From 92ab4023023c56f7ec8238e55ad02cae0e85c70d Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Tue, 23 Apr 2002 06:15:44 +0000 Subject: [PATCH] Provide the real `distribute' target so that NLS catalogs are installed with `make release'. --- share/mk/bsd.nls.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/mk/bsd.nls.mk b/share/mk/bsd.nls.mk index 6d91d0be4962..76da8e1dce74 100644 --- a/share/mk/bsd.nls.mk +++ b/share/mk/bsd.nls.mk @@ -125,8 +125,12 @@ all-man: _SUBDIR maninstall: _SUBDIR .endif +DISTRIBUTION?= bin .if !target(distribute) distribute: +.for dist in ${DISTRIBUTION} + cd ${.CURDIR}; $(MAKE) install DESTDIR=${DISTDIR}/${dist} SHARED=copies +.endfor .endif .if !target(beforeinstall)