|
@@ -311,9 +311,15 @@ endif
|
|
|
# If the user is running make -s (silent mode), suppress echoing of
|
|
# If the user is running make -s (silent mode), suppress echoing of
|
|
|
# commands
|
|
# commands
|
|
|
|
|
|
|
|
|
|
+ifneq ($(filter 4.%,$(MAKE_VERSION)),) # make-4
|
|
|
|
|
+ifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),)
|
|
|
|
|
+ quiet=silent_
|
|
|
|
|
+endif
|
|
|
|
|
+else # make-3.8x
|
|
|
ifneq ($(filter s% -s%,$(MAKEFLAGS)),)
|
|
ifneq ($(filter s% -s%,$(MAKEFLAGS)),)
|
|
|
quiet=silent_
|
|
quiet=silent_
|
|
|
endif
|
|
endif
|
|
|
|
|
+endif
|
|
|
|
|
|
|
|
export quiet Q KBUILD_VERBOSE
|
|
export quiet Q KBUILD_VERBOSE
|
|
|
|
|
|