diff options
author | gordon <gordon@FreeBSD.org> | 2003-08-01 09:04:32 +0000 |
---|---|---|
committer | gordon <gordon@FreeBSD.org> | 2003-08-01 09:04:32 +0000 |
commit | 1b9a307163241f18518e00b5cd22b17d811553c1 (patch) | |
tree | d1fba9c090f755369741f67878785b47eb2b280b /rescue | |
parent | 7e280bd7573ddfe4702be6717f1cd144e567ffa0 (diff) | |
download | FreeBSD-src-1b9a307163241f18518e00b5cd22b17d811553c1.zip FreeBSD-src-1b9a307163241f18518e00b5cd22b17d811553c1.tar.gz |
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@
Diffstat (limited to 'rescue')
-rw-r--r-- | rescue/rescue/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index d12c35c..32c16cd 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -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) |