Reverse the sense of the test wrt bmake, and guard against
MK_BMAKE not being defined.
This commit is contained in:
parent
1d06cba9f7
commit
70d21b25e5
2
Makefile
2
Makefile
@ -281,7 +281,7 @@ kernel: buildkernel installkernel
|
||||
#
|
||||
upgrade_checks:
|
||||
.if !defined(.PARSEDIR)
|
||||
.if defined(WITH_BMAKE)
|
||||
.if !defined(WITHOUT_BMAKE)
|
||||
(cd ${.CURDIR} && ${MAKE} bmake)
|
||||
.else
|
||||
@if ! (cd ${.CURDIR}/tools/build/make_check && \
|
||||
|
@ -111,7 +111,7 @@ CFLAGS+= -DDEFSHELLNAME=\"${MAKE_SHELL}\"
|
||||
.error "MAKE_SHELL must be set to one of \"csh\", \"sh\" or \"ksh\"."
|
||||
.endif
|
||||
|
||||
.if ${MK_BMAKE} != "no"
|
||||
.if defined(MK_BMAKE) && ${MK_BMAKE} != "no"
|
||||
# if we are here we don't want this called 'make'
|
||||
PROG= fmake
|
||||
fmake.1: make.1
|
||||
|
Loading…
Reference in New Issue
Block a user