Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Jun 2016 23:57:57 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r301937 - head/share/mk
Message-ID:  <201606152357.u5FNvvBx075734@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Wed Jun 15 23:57:57 2016
New Revision: 301937
URL: https://svnweb.freebsd.org/changeset/base/301937

Log:
  WITH_META_MODE: Keep .MAKE.MODE/META_MODE clean
  
  Due to META_MODE being passed into the environment it tends
  to keep growing with the defaults.
  
  Approved by:	re (implicit)
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/share/mk/sys.mk

Modified: head/share/mk/sys.mk
==============================================================================
--- head/share/mk/sys.mk	Wed Jun 15 23:57:53 2016	(r301936)
+++ head/share/mk/sys.mk	Wed Jun 15 23:57:57 2016	(r301937)
@@ -425,6 +425,10 @@ __MAKE_CONF?=/etc/make.conf
 # late include for customization
 .sinclude <local.sys.mk>
 
+.if defined(META_MODE)
+META_MODE:=	${META_MODE:O:u}
+.endif
+
 .if defined(__MAKE_SHELL) && !empty(__MAKE_SHELL)
 SHELL=	${__MAKE_SHELL}
 .SHELL: path=${__MAKE_SHELL}



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