aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2003-05-25 01:20:52 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-05-25 01:20:52 -0700
commitcea3390cdd657147c705f8e9457c39b0f4716acc (patch)
tree1d4cb9121aa4afd7be84eaba28dda1ae86b7895a /Makefile
parent4e5405e509ceb011be76d1743d0190c74cbde097 (diff)
downloadhistory-cea3390cdd657147c705f8e9457c39b0f4716acc.tar.gz
[PATCH] kbuild: Get more focus on warnings
Make the default kernel build less verbose, to make warnings show up more clearly.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dd6caeb1a57dfc..6ebd875b0f3eae 100644
--- a/Makefile
+++ b/Makefile
@@ -107,7 +107,7 @@ export KBUILD_MODULES KBUILD_BUILTIN KBUILD_VERBOSE KBUILD_CHECKSRC
# If it is set to "silent_", nothing wil be printed at all, since
# the variable $(silent_cmd_cc_o_c) doesn't exist.
-# For now, leave verbose as default
+# To put more focus on warnings, less verbose as default
ifdef V
ifeq ("$(origin V)", "command line")
@@ -115,7 +115,7 @@ ifdef V
endif
endif
ifndef KBUILD_VERBOSE
- KBUILD_VERBOSE = 1
+ KBUILD_VERBOSE = 0
endif
ifdef C