|
@@ -84,17 +84,10 @@ 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))),)
|
|
|
|
|
|
+ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
|
|
quiet=silent_
|
|
quiet=silent_
|
|
tools_silent=s
|
|
tools_silent=s
|
|
endif
|
|
endif
|
|
-else # make-3.8x
|
|
|
|
-ifneq ($(filter s% -s%,$(MAKEFLAGS)),)
|
|
|
|
- quiet=silent_
|
|
|
|
- tools_silent=-s
|
|
|
|
-endif
|
|
|
|
-endif
|
|
|
|
|
|
|
|
export quiet Q KBUILD_VERBOSE
|
|
export quiet Q KBUILD_VERBOSE
|
|
|
|
|