perf tools: Align perf version output to other build messages
authorIngo Molnar <[email protected]>
Wed, 9 Oct 2013 09:49:28 +0000 (11:49 +0200)
committerArnaldo Carvalho de Melo <[email protected]>
Fri, 11 Oct 2013 15:18:10 +0000 (12:18 -0300)
Before:

  CC util/pmu.o
  CC util/parse-events.o
PERF_VERSION = 3.12.rc4.g1b30c
  CC util/parse-events-flex.o
  GEN perf-archive

After:

  CC util/pmu.o
  CC util/parse-events.o
  PERF_VERSION = 3.12.rc4.g1b30c
  CC util/parse-events-flex.o
  GEN perf-archive

Signed-off-by: Ingo Molnar <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Namhyung Kim <[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/util/PERF-VERSION-GEN

index 15a77b7c0e36f155c968cbf59780aec089c53f3a..ce7a804b2951656b4cfb1946d5541f392123e7ea 100755 (executable)
@@ -40,7 +40,7 @@ else
        VC=unset
 fi
 test "$VN" = "$VC" || {
-       echo >&2 "PERF_VERSION = $VN"
+       echo >&2 "  PERF_VERSION = $VN"
        echo "#define PERF_VERSION \"$VN\"" >$GVF
 }