diff options
author | grant <grant@pkgsrc.org> | 2004-11-26 12:08:44 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-11-26 12:08:44 +0000 |
commit | fd53d5bb32206a754025859d4f44c2be7e4c2da7 (patch) | |
tree | 7f7031e151a15eee6b6bbec736443cd5beb94b20 /bootstrap | |
parent | 74329dda52ac6b64fc8307ef2bcac394a41ba54f (diff) | |
download | pkgsrc-fd53d5bb32206a754025859d4f44c2be7e4c2da7.tar.gz |
ensure MAKEFLAGS is empty when calling bmake.boot. HP-UX make(1) sets
MAKEFLAGS incorrectly and bmake interprets this as a target.
from Eric Schnoebelen in PR pkg/23683. thanks!
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/bmake/makefile.boot.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/bmake/makefile.boot.in b/bootstrap/bmake/makefile.boot.in index 35e88e36302..a42b1d28523 100644 --- a/bootstrap/bmake/makefile.boot.in +++ b/bootstrap/bmake/makefile.boot.in @@ -1,5 +1,5 @@ # RCSid: -# $Id: makefile.boot.in,v 1.2 2004/08/23 03:44:34 jlam Exp $ +# $Id: makefile.boot.in,v 1.3 2004/11/26 12:08:44 grant Exp $ # # modify MACHINE and MACHINE_ARCH as appropriate for your target architecture @@ -31,7 +31,7 @@ bmake.boot: ${OBJ} rm -f *.[ado] */*.[ado] bootstrap: bmake.boot - CC="$(CC)" MAKESYSPATH=${MK} ./bmake.boot -f Makefile + CC="$(CC)" MAKEFLAGS="" MAKESYSPATH=${MK} ./bmake.boot -f Makefile install: install-bin install-man install-mk install-bin: |