From 70d21b25e5b391efb14d11a42d5c6c07c0571435 Mon Sep 17 00:00:00 2001 From: sjg Date: Thu, 16 May 2013 21:26:46 +0000 Subject: Reverse the sense of the test wrt bmake, and guard against MK_BMAKE not being defined. --- usr.bin/make/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/make') diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile index 5bc8b87..4605bb3 100644 --- a/usr.bin/make/Makefile +++ b/usr.bin/make/Makefile @@ -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 -- cgit v1.1