svn commit: r289381 - projects/release-pkg

Glen Barber gjb at FreeBSD.org
Thu Oct 15 19:53:18 UTC 2015


Author: gjb
Date: Thu Oct 15 19:53:16 2015
New Revision: 289381
URL: https://svnweb.freebsd.org/changeset/base/289381

Log:
  Pass .MAKEFLAGS in the 'packages' target to allow parallel
  builds.
  
  Pass '-B' when invoking the 'stageworld' target, similar to
  what is done for 'installworld'.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/release-pkg/Makefile.inc1

Modified: projects/release-pkg/Makefile.inc1
==============================================================================
--- projects/release-pkg/Makefile.inc1	Thu Oct 15 19:51:34 2015	(r289380)
+++ projects/release-pkg/Makefile.inc1	Thu Oct 15 19:53:16 2015	(r289381)
@@ -1285,8 +1285,8 @@ STAGEDIR=	${MAKEOBJDIRPREFIX}${.CURDIR}/
 packages:
 	@mkdir -p ${MAKEOBJDIRPREFIX}${.CURDIR}/stage
 	${_+_}@cd ${.CURDIR}; \
-		${MAKE} buildworld ; \
-		${MAKE} DESTDIR=${DESTDIR:U${STAGEDIR}} -DNO_ROOT stageworld ; \
+		${MAKE} ${.MAKEFLAGS} buildworld ; \
+		${MAKE} DESTDIR=${DESTDIR:U${STAGEDIR}} -DNO_ROOT -B stageworld ; \
 		${MAKE} DESTDIR=${DESTDIR:U${STAGEDIR}} create-world-packages
 
 create-kernel-packages:


More information about the svn-src-projects mailing list