mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
When using crunchgen, blow away MAKEFLAGS. This fixes make -j <#> -P
from passing the -P flag to crunchgen which seems to confuse crunchgen horribly. This is the preferable solution to modifing crunchgen to unset the MAKEFLAGS environment variable. Submitted by: gad@
This commit is contained in:
parent
20b0471597
commit
b7ca2f2822
1 changed files with 2 additions and 2 deletions
|
|
@ -248,8 +248,8 @@ $(CONF): Makefile
|
|||
|
||||
.ORDER: $(OUTPUTS) objs
|
||||
$(OUTPUTS): $(CONF)
|
||||
MAKEOBJDIRPREFIX=${CRUNCHOBJS} crunchgen -q -m $(OUTMK) -c $(OUTC) \
|
||||
$(CONF)
|
||||
MAKEFLAGS= MAKEOBJDIRPREFIX=${CRUNCHOBJS} crunchgen -q -m $(OUTMK) \
|
||||
-c $(OUTC) $(CONF)
|
||||
|
||||
$(PROG): $(OUTPUTS) objs
|
||||
MAKEOBJDIRPREFIX=${CRUNCHOBJS} make -f $(OUTMK)
|
||||
|
|
|
|||
Loading…
Reference in a new issue