aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2013-06-04 15:27:41 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2013-06-04 15:27:41 +0000
commit5a968130d572d570d69890b19563930d415feed6 (patch)
tree06928c96f3429fd0f30189cf1d2a2f8c2e7d354a /Makefile
parent62eec430f31138fdb4bc22d6caf7a06df1c7d993 (diff)
downloadsrc-5a968130d572d570d69890b19563930d415feed6.tar.gz
src-5a968130d572d570d69890b19563930d415feed6.zip
Ensure this makefile and anything it runs, does so without meta mode.
Allows buildworld etc.
Notes
Notes: svn path=/projects/bmake/; revision=251381
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a396fc9c167c..b48b78465ac5 100644
--- a/Makefile
+++ b/Makefile
@@ -458,3 +458,11 @@ universe_epilogue:
buildLINT:
${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
+
+.if defined(.PARSEDIR)
+# this makefile does not run in meta mode
+.MAKE.MODE= normal
+# make sure things we run from here don't either
+WITHOUT_META_MODE=
+.export WITHOUT_META_MODE
+.endif