diff options
| -rw-r--r-- | include/verbose.mk | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/include/verbose.mk b/include/verbose.mk index 58a20a217..16a75c08c 100644 --- a/include/verbose.mk +++ b/include/verbose.mk @@ -9,7 +9,10 @@  NO_TRACE_MAKE:=$(MAKE) V=99  ifndef KBUILD_VERBOSE -  KBUILD_VERBOSE=$(V) +  KBUILD_VERBOSE=0 +  ifdef V +    KBUILD_VERBOSE=$(V) +  endif  endif  ifneq ($(KBUILD_VERBOSE),99)  | 
