diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2012-10-26 04:55:51 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-10-26 09:22:24 -0400 |
commit | cf3aa103555136c04894058152b129c133ebf350 (patch) | |
tree | ffa8efdd9debe1cd7bf35b44f47e6f8eb7e2cebc | |
parent | 615d774d69031357a1bfed57fd383c6fe6f90a69 (diff) |
perf tools: Always show CHK message when doing try-cc
It might be useful to see what's happening behind us rather than just
waiting few seconds during the config checking.
Also align the CHK message with other ones.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Borislav Petkov <bp@amd64.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1351241752-2919-4-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/config/utilities.mak | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/perf/config/utilities.mak b/tools/perf/config/utilities.mak index ea853c279b31..e5413125e6bb 100644 --- a/tools/perf/config/utilities.mak +++ b/tools/perf/config/utilities.mak | |||
@@ -183,9 +183,8 @@ _gea_err = $(if $(1),$(error Please set '$(1)' appropriately)) | |||
183 | # Usage: option = $(call try-cc, source-to-build, cc-options, msg) | 183 | # Usage: option = $(call try-cc, source-to-build, cc-options, msg) |
184 | ifndef V | 184 | ifndef V |
185 | TRY_CC_OUTPUT= > /dev/null 2>&1 | 185 | TRY_CC_OUTPUT= > /dev/null 2>&1 |
186 | else | ||
187 | TRY_CC_MSG=echo "CHK $(3)" 1>&2; | ||
188 | endif | 186 | endif |
187 | TRY_CC_MSG=echo " CHK $(3)" 1>&2; | ||
189 | 188 | ||
190 | try-cc = $(shell sh -c \ | 189 | try-cc = $(shell sh -c \ |
191 | 'TMP="$(OUTPUT)$(TMPOUT).$$$$"; \ | 190 | 'TMP="$(OUTPUT)$(TMPOUT).$$$$"; \ |