diff options
author | jhb <jhb@FreeBSD.org> | 2010-12-16 15:27:13 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2010-12-16 15:27:13 +0000 |
commit | 4e3d1cfc31bc5e4cc7abd479302060f311a96513 (patch) | |
tree | 3768b7daf047116043951fb4325f728367ffc213 /Makefile | |
parent | 5d76ffc8095eee8e09dfd6ae61f91755bd2c32a5 (diff) | |
download | FreeBSD-src-4e3d1cfc31bc5e4cc7abd479302060f311a96513.zip FreeBSD-src-4e3d1cfc31bc5e4cc7abd479302060f311a96513.tar.gz |
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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -271,7 +271,7 @@ make: .PHONY tinderbox: cd ${.CURDIR} && \ - DOING_TINDERBOX=YES ${MAKE} ${JFLAG} universe + DOING_TINDERBOX=YES ${MAKE} JFLAG=${JFLAG} universe # # universe |