pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/bootstrap/bmake ensure MAKEFLAGS is empty when calling...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/10b258c940ba
branches:  trunk
changeset: 484237:10b258c940ba
user:      grant <grant%pkgsrc.org@localhost>
date:      Fri Nov 26 12:08:44 2004 +0000

description:
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:

 bootstrap/bmake/makefile.boot.in |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 685abc3ea58f -r 10b258c940ba bootstrap/bmake/makefile.boot.in
--- a/bootstrap/bmake/makefile.boot.in  Fri Nov 26 12:07:26 2004 +0000
+++ b/bootstrap/bmake/makefile.boot.in  Fri Nov 26 12:08:44 2004 +0000
@@ -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 @@
        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:



Home | Main Index | Thread Index | Old Index