Ensure this makefile and anything it runs, does so without meta mode.

Allows buildworld etc.
This commit is contained in:
Simon J. Gerraty 2013-06-04 15:27:41 +00:00
parent 62eec430f3
commit 5a968130d5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/bmake/; revision=251381

View file

@ -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