diff options
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -311,9 +311,15 @@ endif | |||
311 | # If the user is running make -s (silent mode), suppress echoing of | 311 | # If the user is running make -s (silent mode), suppress echoing of |
312 | # commands | 312 | # commands |
313 | 313 | ||
314 | ifneq ($(filter 4.%,$(MAKE_VERSION)),) # make-4 | ||
315 | ifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),) | ||
316 | quiet=silent_ | ||
317 | endif | ||
318 | else # make-3.8x | ||
314 | ifneq ($(filter s% -s%,$(MAKEFLAGS)),) | 319 | ifneq ($(filter s% -s%,$(MAKEFLAGS)),) |
315 | quiet=silent_ | 320 | quiet=silent_ |
316 | endif | 321 | endif |
322 | endif | ||
317 | 323 | ||
318 | export quiet Q KBUILD_VERBOSE | 324 | export quiet Q KBUILD_VERBOSE |
319 | 325 | ||