svn commit: r320280 - head

Bryan Drewery bdrewery at FreeBSD.org
Fri Jun 23 18:26:35 UTC 2017


Author: bdrewery
Date: Fri Jun 23 18:26:33 2017
New Revision: 320280
URL: https://svnweb.freebsd.org/changeset/base/320280

Log:
  packages: Allow stageworld/stagekernel to run with make jobs.
  
  The -B was originally added in projects/release-pkg r289381 as a copy
  of what 'make world' did at the time.  The -B was removed from
  the 'installworld' call in 'world' in r303844 though.  The staging
  of files is safe to run in parallel.
  
  MFC after:	2 weeks
  Sponsored by:	Dell EMC Isilon

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Fri Jun 23 18:06:46 2017	(r320279)
+++ head/Makefile.inc1	Fri Jun 23 18:26:33 2017	(r320280)
@@ -1539,8 +1539,8 @@ real-packages:	stage-packages create-packages sign-pac
 stage-packages: .PHONY
 	@mkdir -p ${REPODIR} ${WSTAGEDIR} ${KSTAGEDIR}
 	${_+_}@cd ${.CURDIR}; \
-		${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT -B stageworld ; \
-		${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT -B stagekernel
+		${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT stageworld; \
+		${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT stagekernel
 
 create-packages:	_pkgbootstrap .PHONY
 	@mkdir -p ${REPODIR}


More information about the svn-src-head mailing list