svn commit: r251381 - projects/bmake

Simon J. Gerraty sjg at FreeBSD.org
Tue Jun 4 15:27:41 UTC 2013


Author: sjg
Date: Tue Jun  4 15:27:41 2013
New Revision: 251381
URL: http://svnweb.freebsd.org/changeset/base/251381

Log:
  Ensure this makefile and anything it runs, does so without meta mode.
  Allows buildworld etc.

Modified:
  projects/bmake/Makefile

Modified: projects/bmake/Makefile
==============================================================================
--- projects/bmake/Makefile	Tue Jun  4 15:27:09 2013	(r251380)
+++ projects/bmake/Makefile	Tue Jun  4 15:27:41 2013	(r251381)
@@ -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


More information about the svn-src-projects mailing list