aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Richter <robert.richter@calxeda.com>2013-05-03 09:49:53 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-07-08 16:31:34 -0400
commit5125bc22e7871b46e71312d6cc4455e9eea1619d (patch)
tree27a9d972309b9f3b687a0ea92a3cfde91c3f7559
parente5302920da9ef23f9d19d4e9ac85704cc25bee7a (diff)
tools: Get only verbose output with V=1
Fix having verbose build with V=0, e.g: make V=0 -C tools/ perf Signed-off-by: Robert Richter <robert.richter@calxeda.com> Link: http://lkml.kernel.org/r/20130503134953.GU8356@rric.localhost Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/Documentation/Makefile2
-rw-r--r--tools/perf/config/utilities.mak2
-rw-r--r--tools/scripts/Makefile.include2
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/Documentation/Makefile b/tools/perf/Documentation/Makefile
index eb30044a922a..f75175757892 100644
--- a/tools/perf/Documentation/Makefile
+++ b/tools/perf/Documentation/Makefile
@@ -150,7 +150,7 @@ NO_SUBDIR = :
150endif 150endif
151 151
152ifneq ($(findstring $(MAKEFLAGS),s),s) 152ifneq ($(findstring $(MAKEFLAGS),s),s)
153ifndef V 153ifneq ($(V),1)
154 QUIET_ASCIIDOC = @echo ' ' ASCIIDOC $@; 154 QUIET_ASCIIDOC = @echo ' ' ASCIIDOC $@;
155 QUIET_XMLTO = @echo ' ' XMLTO $@; 155 QUIET_XMLTO = @echo ' ' XMLTO $@;
156 QUIET_DB2TEXI = @echo ' ' DB2TEXI $@; 156 QUIET_DB2TEXI = @echo ' ' DB2TEXI $@;
diff --git a/tools/perf/config/utilities.mak b/tools/perf/config/utilities.mak
index 8ef3bd30a549..faffb52fcf80 100644
--- a/tools/perf/config/utilities.mak
+++ b/tools/perf/config/utilities.mak
@@ -181,7 +181,7 @@ _gea_err = $(if $(1),$(error Please set '$(1)' appropriately))
181 181
182# try-cc 182# try-cc
183# Usage: option = $(call try-cc, source-to-build, cc-options, msg) 183# Usage: option = $(call try-cc, source-to-build, cc-options, msg)
184ifndef V 184ifneq ($(V),1)
185TRY_CC_OUTPUT= > /dev/null 2>&1 185TRY_CC_OUTPUT= > /dev/null 2>&1
186endif 186endif
187TRY_CC_MSG=echo " CHK $(3)" 1>&2; 187TRY_CC_MSG=echo " CHK $(3)" 1>&2;
diff --git a/tools/scripts/Makefile.include b/tools/scripts/Makefile.include
index f03e681f8891..0d0506d55c71 100644
--- a/tools/scripts/Makefile.include
+++ b/tools/scripts/Makefile.include
@@ -59,7 +59,7 @@ QUIET_SUBDIR0 = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
59QUIET_SUBDIR1 = 59QUIET_SUBDIR1 =
60 60
61ifneq ($(findstring $(MAKEFLAGS),s),s) 61ifneq ($(findstring $(MAKEFLAGS),s),s)
62ifndef V 62ifneq ($(V),1)
63 QUIET_CC = @echo ' ' CC $@; 63 QUIET_CC = @echo ' ' CC $@;
64 QUIET_AR = @echo ' ' AR $@; 64 QUIET_AR = @echo ' ' AR $@;
65 QUIET_LINK = @echo ' ' LINK $@; 65 QUIET_LINK = @echo ' ' LINK $@;