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.
This commit is contained in:
Warner Losh 2012-05-09 04:54:50 +00:00
parent d04835140f
commit 18cf7ddfca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=235152

View File

@ -10,7 +10,7 @@ SRCS= arch.c buf.c cond.c dir.c for.c hash.c hash_tables.c job.c \
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