PERFORCE change 216529 for review

Brooks Davis brooks at FreeBSD.org
Sun Aug 26 11:52:05 UTC 2012


http://p4web.freebsd.org/@@216529?ac=10

Change 216529 by brooks at brooks_zenith on 2012/08/26 11:51:41

	Add a LOCAL_MTREE variable to Makefile.inc1 to allow things built
	by LOCAL_*_DIRS to install things in directories not in the base
	hierarchy without resorting to gross hacks.

Affected files ...

.. //depot/projects/ctsrd/beribsd/src/Makefile.inc1#6 edit

Differences ...

==== //depot/projects/ctsrd/beribsd/src/Makefile.inc1#6 (text+ko) ====

@@ -388,6 +388,9 @@
 	mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \
 	    -p ${WORLDTMP}/usr/include >/dev/null
 .endif
+.for _mtree in ${LOCAL_MTREE}
+	mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null
+.endfor
 _legacy:
 	@echo
 	@echo "--------------------------------------------------------------"
@@ -1199,6 +1202,10 @@
 #
 hierarchy hier:
 	cd ${.CURDIR}/etc;		${MAKE} distrib-dirs
+.for _mtree in ${LOCAL_MTREE}
+	mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/${_mtree} \
+	    -p ${DESTDIR}/
+.endfor
 
 #
 # libraries - build all libraries, and install them under ${DESTDIR}.


More information about the p4-projects mailing list