svn commit: r301937 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Wed Jun 15 23:57:58 UTC 2016


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}


More information about the svn-src-all mailing list