svn commit: r235152 - head/usr.bin/make
Warner Losh
imp at FreeBSD.org
Wed May 9 04:54:51 UTC 2012
Author: imp
Date: Wed May 9 04:54:50 2012
New Revision: 235152
URL: http://svn.freebsd.org/changeset/base/235152
Log:
Make is part of the bootstrap path, so we need to guard against this
not being defined. Otherwise we don't make a new make when the old
make is incompatible.
Modified:
head/usr.bin/make/Makefile
Modified: head/usr.bin/make/Makefile
==============================================================================
--- head/usr.bin/make/Makefile Wed May 9 01:55:23 2012 (r235151)
+++ head/usr.bin/make/Makefile Wed May 9 04:54:50 2012 (r235152)
@@ -10,7 +10,7 @@ SRCS= arch.c buf.c cond.c dir.c for.c ha
lst.c main.c make.c parse.c proc.c shell.c str.c suff.c targ.c \
util.c var.c
-.if ${MK_SHARED_TOOLCHAIN} == "no"
+.if !defined(MK_SHARED_TOOLCHAIN) || ${MK_SHARED_TOOLCHAIN} == "no"
NO_SHARED?= YES
.endif
More information about the svn-src-head
mailing list