svn commit: r330423 - stable/11/share/mk
Bryan Drewery
bdrewery at FreeBSD.org
Sun Mar 4 23:32:37 UTC 2018
Author: bdrewery
Date: Sun Mar 4 23:32:36 2018
New Revision: 330423
URL: https://svnweb.freebsd.org/changeset/base/330423
Log:
MFC r325292:
META_MODE: Respect make -s.
Modified:
stable/11/share/mk/sys.mk
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/share/mk/sys.mk
==============================================================================
--- stable/11/share/mk/sys.mk Sun Mar 4 23:31:25 2018 (r330422)
+++ stable/11/share/mk/sys.mk Sun Mar 4 23:32:36 2018 (r330423)
@@ -50,8 +50,11 @@ MK_META_MODE= no
.if ${MK_DIRDEPS_BUILD} == "yes"
.sinclude <meta.sys.mk>
.elif ${MK_META_MODE} == "yes"
+META_MODE+= meta
+.if empty(.MAKEFLAGS:M-s)
# verbose will show .MAKE.META.PREFIX for each target.
-META_MODE+= meta verbose
+META_MODE+= verbose
+.endif
.if !defined(NO_META_MISSING)
META_MODE+= missing-meta=yes
.endif
More information about the svn-src-all
mailing list