svn commit: r216487 - head

John Baldwin jhb at FreeBSD.org
Thu Dec 16 15:27:13 UTC 2010


Author: jhb
Date: Thu Dec 16 15:27:13 2010
New Revision: 216487
URL: http://svn.freebsd.org/changeset/base/216487

Log:
  Pass JFLAG as JFLAG from tinderbox to universe.  This gives the same
  semantics for JFLAG with tinderbox as for universe.  Previously doing
  'make JFLAG=-j4 tinderbox' was equivalent to 'make -j4 universe'
  (i.e. 4 worlds in parallel) rather than 'make JFLAG=-j4 universe'
  (i.e. worlds in sequence, each built with -j4).
  
  MFC after:	1 month

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Thu Dec 16 15:19:32 2010	(r216486)
+++ head/Makefile	Thu Dec 16 15:27:13 2010	(r216487)
@@ -271,7 +271,7 @@ make: .PHONY
 
 tinderbox:
 	cd ${.CURDIR} && \
-		DOING_TINDERBOX=YES ${MAKE} ${JFLAG} universe
+		DOING_TINDERBOX=YES ${MAKE} JFLAG=${JFLAG} universe
 
 #
 # universe


More information about the svn-src-all mailing list