svn commit: r303844 - head

Bryan Drewery bdrewery at FreeBSD.org
Mon Aug 8 18:13:04 UTC 2016


Author: bdrewery
Date: Mon Aug  8 18:13:03 2016
New Revision: 303844
URL: https://svnweb.freebsd.org/changeset/base/303844

Log:
  make world: Allow installworld to be ran in parallel.
  
  This has been safe for a while.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Mon Aug  8 18:10:59 2016	(r303843)
+++ head/Makefile	Mon Aug  8 18:13:03 2016	(r303844)
@@ -315,7 +315,7 @@ world: upgrade_checks .PHONY
 	${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
 .endif
 	${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
-	${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
+	${_+_}@cd ${.CURDIR}; ${_MAKE} installworld MK_META_MODE=no
 .if target(post-world)
 	@echo
 	@echo "--------------------------------------------------------------"


More information about the svn-src-head mailing list