Explicitly enable .MAKE.ALWAYS_PASS_JOB_QUEUE for bmake.
authorbdrewery <bdrewery@FreeBSD.org>
Fri, 25 Sep 2015 22:51:30 +0000 (22:51 +0000)
committerbdrewery <bdrewery@FreeBSD.org>
Fri, 25 Sep 2015 22:51:30 +0000 (22:51 +0000)
commitaf51acc8479d5b4e0c5b4b8bcd3c3b41c459cd02
treee1659a0adf66049a3fd24fe4889244b942ad7695
parent68c4bb4bd1f45b0299190c3bd8aa0c7a6163f3a9
Explicitly enable .MAKE.ALWAYS_PASS_JOB_QUEUE for bmake.

This is a NOP as r254419 enabled this by default in bmake.  Add it here though
to ensure it is known that we are using this as a default and in case a
bmake import removes the default we have.

This tells bmake to always pass job tokens into sub-commands.  Otherwise
it would only do so if the target being built depended on the special
.MAKE target (which causes _all_ commands to be executed with -n as well)
or if the command matches '${MAKE}/${.MAKE}/$(MAKE)/$(.MAKE)/make' (before
expansion, so ${LIB32WMAKE} would not qualify).  Using '+' on a command
(which runs the command with -n) would not pass the job token even though it
is a documented way to achieve the .MAKE effect on a command.

Sponsored by: EMC / Isilon Storage Division
share/mk/sys.mk