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 | f209fd82bf709ac08dffbfb455104efff48e1c8b (patch) | |
tree | 7f7031e151a15eee6b6bbec736443cd5beb94b20 /bootstrap/bmake | |
parent | 9c9054f0866fa0c86e64a6c7a7a4a1c8e15eb3f5 (diff) | |
download | pkgsrc-f209fd82bf709ac08dffbfb455104efff48e1c8b.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/bmake')
-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: |