svn commit: r296123 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Fri Feb 26 22:13:57 UTC 2016


Author: bdrewery
Date: Fri Feb 26 22:13:56 2016
New Revision: 296123
URL: https://svnweb.freebsd.org/changeset/base/296123

Log:
  META_MODE: Default to the silent build.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/share/mk/sys.mk

Modified: head/share/mk/sys.mk
==============================================================================
--- head/share/mk/sys.mk	Fri Feb 26 22:13:52 2016	(r296122)
+++ head/share/mk/sys.mk	Fri Feb 26 22:13:56 2016	(r296123)
@@ -47,6 +47,10 @@ __ENV_ONLY_OPTIONS:= \
 .elif ${MK_META_MODE} == "yes" && defined(.MAKEFLAGS) && ${.MAKEFLAGS:M-B} == ""
 # verbose will show .MAKE.META.PREFIX for each target.
 META_MODE=	meta verbose
+# silent will hide command output if a .meta file is created.
+.if !defined(NO_SILENT)
+META_MODE+=	silent=yes
+.endif
 .if !exists(/dev/filemon)
 META_MODE+= nofilemon
 .endif


More information about the svn-src-head mailing list