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