Date: Thu, 16 Dec 2010 15:27:13 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r216487 - head Message-ID: <201012161527.oBGFRDWw064210@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201012161527.oBGFRDWw064210>