* [PATCH] tools: Get only verbose output with V=1 @ 2013-05-03 12:07 Robert Richter 2013-05-03 13:49 ` [PATCH v2] " Robert Richter 0 siblings, 1 reply; 3+ messages in thread From: Robert Richter @ 2013-05-03 12:07 UTC (permalink / raw) To: Arnaldo Carvalho de Melo; +Cc: linux-kernel, Robert Richter From: Robert Richter <robert.richter@calxeda.com> Fix having verbose build with V=0, e.g: make V=0 -C tools/ perf Signed-off-by: Robert Richter <robert.richter@calxeda.com> --- tools/scripts/Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/Makefile.include b/tools/scripts/Makefile.include index 2964b96..14b349f 100644 --- a/tools/scripts/Makefile.include +++ b/tools/scripts/Makefile.include @@ -57,7 +57,7 @@ QUIET_SUBDIR0 = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir QUIET_SUBDIR1 = ifneq ($(findstring $(MAKEFLAGS),s),s) -ifndef V +ifneq ($(V),1) QUIET_CC = @echo ' ' CC $@; QUIET_AR = @echo ' ' AR $@; QUIET_LINK = @echo ' ' LINK $@; -- 1.8.1.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH v2] tools: Get only verbose output with V=1 2013-05-03 12:07 [PATCH] tools: Get only verbose output with V=1 Robert Richter @ 2013-05-03 13:49 ` Robert Richter 2013-07-12 8:49 ` [tip:perf/urgent] " tip-bot for Robert Richter 0 siblings, 1 reply; 3+ messages in thread From: Robert Richter @ 2013-05-03 13:49 UTC (permalink / raw) To: Arnaldo Carvalho de Melo; +Cc: linux-kernel@vger.kernel.org, Robert Richter On 03.05.13 08:07:31, Robert Richter wrote: > Fix having verbose build with V=0, e.g: > > make V=0 -C tools/ perf Arnaldo, there are some more issues with this. Updated patch below. -Robert >From 84b1d3c99dc591adfbfab54cf04e1dbeca8f6608 Mon Sep 17 00:00:00 2001 From: Robert Richter <robert.richter@calxeda.com> Date: Thu, 2 May 2013 18:19:09 +0200 Subject: [PATCH] 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> --- tools/perf/Documentation/Makefile | 2 +- tools/perf/config/utilities.mak | 2 +- tools/scripts/Makefile.include | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/perf/Documentation/Makefile b/tools/perf/Documentation/Makefile index eb30044..f751757 100644 --- a/tools/perf/Documentation/Makefile +++ b/tools/perf/Documentation/Makefile @@ -150,7 +150,7 @@ NO_SUBDIR = : endif ifneq ($(findstring $(MAKEFLAGS),s),s) -ifndef V +ifneq ($(V),1) QUIET_ASCIIDOC = @echo ' ' ASCIIDOC $@; QUIET_XMLTO = @echo ' ' XMLTO $@; QUIET_DB2TEXI = @echo ' ' DB2TEXI $@; diff --git a/tools/perf/config/utilities.mak b/tools/perf/config/utilities.mak index 8ef3bd3..faffb52 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)) # try-cc # Usage: option = $(call try-cc, source-to-build, cc-options, msg) -ifndef V +ifneq ($(V),1) TRY_CC_OUTPUT= > /dev/null 2>&1 endif TRY_CC_MSG=echo " CHK $(3)" 1>&2; diff --git a/tools/scripts/Makefile.include b/tools/scripts/Makefile.include index 2964b96..14b349f 100644 --- a/tools/scripts/Makefile.include +++ b/tools/scripts/Makefile.include @@ -57,7 +57,7 @@ QUIET_SUBDIR0 = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir QUIET_SUBDIR1 = ifneq ($(findstring $(MAKEFLAGS),s),s) -ifndef V +ifneq ($(V),1) QUIET_CC = @echo ' ' CC $@; QUIET_AR = @echo ' ' AR $@; QUIET_LINK = @echo ' ' LINK $@; -- 1.8.1.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [tip:perf/urgent] tools: Get only verbose output with V=1 2013-05-03 13:49 ` [PATCH v2] " Robert Richter @ 2013-07-12 8:49 ` tip-bot for Robert Richter 0 siblings, 0 replies; 3+ messages in thread From: tip-bot for Robert Richter @ 2013-07-12 8:49 UTC (permalink / raw) To: linux-tip-commits; +Cc: acme, linux-kernel, hpa, mingo, tglx, robert.richter Commit-ID: 5125bc22e7871b46e71312d6cc4455e9eea1619d Gitweb: http://git.kernel.org/tip/5125bc22e7871b46e71312d6cc4455e9eea1619d Author: Robert Richter <robert.richter@calxeda.com> AuthorDate: Fri, 3 May 2013 15:49:53 +0200 Committer: Arnaldo Carvalho de Melo <acme@redhat.com> CommitDate: Mon, 8 Jul 2013 17:31:34 -0300 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> --- tools/perf/Documentation/Makefile | 2 +- tools/perf/config/utilities.mak | 2 +- tools/scripts/Makefile.include | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/perf/Documentation/Makefile b/tools/perf/Documentation/Makefile index eb30044..f751757 100644 --- a/tools/perf/Documentation/Makefile +++ b/tools/perf/Documentation/Makefile @@ -150,7 +150,7 @@ NO_SUBDIR = : endif ifneq ($(findstring $(MAKEFLAGS),s),s) -ifndef V +ifneq ($(V),1) QUIET_ASCIIDOC = @echo ' ' ASCIIDOC $@; QUIET_XMLTO = @echo ' ' XMLTO $@; QUIET_DB2TEXI = @echo ' ' DB2TEXI $@; diff --git a/tools/perf/config/utilities.mak b/tools/perf/config/utilities.mak index 8ef3bd3..faffb52 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)) # try-cc # Usage: option = $(call try-cc, source-to-build, cc-options, msg) -ifndef V +ifneq ($(V),1) TRY_CC_OUTPUT= > /dev/null 2>&1 endif TRY_CC_MSG=echo " CHK $(3)" 1>&2; diff --git a/tools/scripts/Makefile.include b/tools/scripts/Makefile.include index f03e681..0d0506d 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 QUIET_SUBDIR1 = ifneq ($(findstring $(MAKEFLAGS),s),s) -ifndef V +ifneq ($(V),1) QUIET_CC = @echo ' ' CC $@; QUIET_AR = @echo ' ' AR $@; QUIET_LINK = @echo ' ' LINK $@; ^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-07-12 8:49 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-05-03 12:07 [PATCH] tools: Get only verbose output with V=1 Robert Richter 2013-05-03 13:49 ` [PATCH v2] " Robert Richter 2013-07-12 8:49 ` [tip:perf/urgent] " tip-bot for Robert Richter
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.