summaryrefslogtreecommitdiffstats
path: root/share/mk/bsd.prog.mk
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1997-06-21 15:40:34 +0000
committerjkh <jkh@FreeBSD.org>1997-06-21 15:40:34 +0000
commita8bb7ab7de8839eb216a36d0b906898fffa59372 (patch)
treef82d6b94c451e5aa49ea4ca92cc825fadf4ea91e /share/mk/bsd.prog.mk
parent90a0066a3fb52aa84d52e5fb3c2cc9b9121e3fdb (diff)
downloadFreeBSD-src-a8bb7ab7de8839eb216a36d0b906898fffa59372.zip
FreeBSD-src-a8bb7ab7de8839eb216a36d0b906898fffa59372.tar.gz
Change the distribute targets so that a given item in our source tree
can place itself into n distributions, where n >= 1.
Diffstat (limited to 'share/mk/bsd.prog.mk')
-rw-r--r--share/mk/bsd.prog.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk
index cc146d2..c892983 100644
--- a/share/mk/bsd.prog.mk
+++ b/share/mk/bsd.prog.mk
@@ -1,5 +1,5 @@
# from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
-# $Id: bsd.prog.mk,v 1.49 1997/04/23 18:47:42 bde Exp $
+# $Id: bsd.prog.mk,v 1.50 1997/05/23 08:38:46 asami Exp $
.if exists(${.CURDIR}/../Makefile.inc)
.include "${.CURDIR}/../Makefile.inc"
@@ -112,7 +112,9 @@ afterinstall: realinstall
DISTRIBUTION?= bin
.if !target(distribute)
distribute: _SUBDIR
- cd ${.CURDIR} ; $(MAKE) install DESTDIR=${DISTDIR}/${DISTRIBUTION} SHARED=copies
+.for dist in ${DISTRIBUTION}
+ cd ${.CURDIR} ; $(MAKE) install DESTDIR=${DISTDIR}/${dist} SHARED=copies
+.endfor
.endif
.if !target(lint)
OpenPOWER on IntegriCloud