summaryrefslogtreecommitdiffstats
path: root/usr.bin/bmake/Makefile.inc
diff options
context:
space:
mode:
authorsjg <sjg@FreeBSD.org>2013-05-17 22:18:27 +0000
committersjg <sjg@FreeBSD.org>2013-05-17 22:18:27 +0000
commit43bd9a742238917acb4c04c6a9ea8ef05815f752 (patch)
treec3ce185b02a42150a9584391bac33c65fa580ca8 /usr.bin/bmake/Makefile.inc
parentd482c3688dafdd43aadc9a8ace6d5cc9b537c52f (diff)
downloadFreeBSD-src-43bd9a742238917acb4c04c6a9ea8ef05815f752.zip
FreeBSD-src-43bd9a742238917acb4c04c6a9ea8ef05815f752.tar.gz
Per the comment, we cannot rely on bsd.own.mk
we could be on an old system that knows noting of MK_BMAKE or on an almost up to date one that is defaulting it to "no" neither of which will work.
Diffstat (limited to 'usr.bin/bmake/Makefile.inc')
-rw-r--r--usr.bin/bmake/Makefile.inc13
1 files changed, 6 insertions, 7 deletions
diff --git a/usr.bin/bmake/Makefile.inc b/usr.bin/bmake/Makefile.inc
index 7b5f545..7567887 100644
--- a/usr.bin/bmake/Makefile.inc
+++ b/usr.bin/bmake/Makefile.inc
@@ -1,12 +1,5 @@
# $FreeBSD$
-# we need the up to date bsd.own.mk
-.if ${.CURDIR:M*make} == ""
-.sinclude "share/mk/bsd.own.mk"
-.else
-.sinclude "../../share/mk/bsd.own.mk"
-.endif
-# the above should have found it...
.include "bsd.own.mk"
.if defined(.PARSEDIR)
@@ -14,6 +7,12 @@
.export SRCTOP
.endif
+# Sadly, we cannot assume bsd.own.mk did its job,
+# nor can we safely include the one we want
+.if !defined(WITHOUT_BMAKE)
+MK_BMAKE= yes
+.endif
+
.if defined(MK_BMAKE) && ${MK_BMAKE} != "no"
PROG= make
.endif
OpenPOWER on IntegriCloud