perf tools: Always show CHK message when doing try-cc
authorNamhyung Kim <[email protected]>
Fri, 26 Oct 2012 08:55:51 +0000 (17:55 +0900)
committerArnaldo Carvalho de Melo <[email protected]>
Fri, 26 Oct 2012 13:22:24 +0000 (11:22 -0200)
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 <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/config/utilities.mak

index ea853c279b3105cdd1fe97830b9041269e9a6274..e5413125e6bbaef823b773b7a5b712d30c89a0b1 100644 (file)
@@ -183,9 +183,8 @@ _gea_err  = $(if $(1),$(error Please set '$(1)' appropriately))
 # Usage: option = $(call try-cc, source-to-build, cc-options, msg)
 ifndef V
 TRY_CC_OUTPUT= > /dev/null 2>&1
-else
-TRY_CC_MSG=echo "CHK $(3)" 1>&2;
 endif
+TRY_CC_MSG=echo "    CHK $(3)" 1>&2;
 
 try-cc = $(shell sh -c                                           \
        'TMP="$(OUTPUT)$(TMPOUT).$$$$";                           \