Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Jun 2013 15:27:41 +0000 (UTC)
From:      "Simon J. Gerraty" <sjg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r251381 - projects/bmake
Message-ID:  <201306041527.r54FRflM044776@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306041527.r54FRflM044776>