META_MODE: Default to the silent build.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Bryan Drewery 2016-02-26 22:13:56 +00:00
parent 342863e712
commit b29980a63f

View File

@ -47,6 +47,10 @@ __ENV_ONLY_OPTIONS:= \
.elif ${MK_META_MODE} == "yes" && defined(.MAKEFLAGS) && ${.MAKEFLAGS:M-B} == "" .elif ${MK_META_MODE} == "yes" && defined(.MAKEFLAGS) && ${.MAKEFLAGS:M-B} == ""
# verbose will show .MAKE.META.PREFIX for each target. # verbose will show .MAKE.META.PREFIX for each target.
META_MODE= meta verbose 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) .if !exists(/dev/filemon)
META_MODE+= nofilemon META_MODE+= nofilemon
.endif .endif