From 5a968130d572d570d69890b19563930d415feed6 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Tue, 4 Jun 2013 15:27:41 +0000 Subject: [PATCH] Ensure this makefile and anything it runs, does so without meta mode. Allows buildworld etc. --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) 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