diff options
author | Michael Witten <mfwitten@gmail.com> | 2011-02-03 23:10:55 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-02-07 05:38:03 -0500 |
commit | 9c56dfeb784a586713f467e2028a127a2a58a238 (patch) | |
tree | 7955436666f693da5966cd816d824232875f7a9a /tools/perf/Makefile | |
parent | 075de90c46562de1435db16c2129ec4ff92e5bd2 (diff) |
perf tools: Makefile: Use $(QUIET_GEN) for perf.so
So that we get this:
CC /home/acme/git/build/perf/bench/mem-memcpy-x86-64-asm.o
GEN perf-archive
* GEN /home/acme/git/build/perf/python/perf.so
CC /home/acme/git/build/perf/builtin-annotate.o
Instead of silently building the python binding.
LKML-Reference: <1296890359-22659-1-git-send-email-mfwitten@gmail.com>
Signed-off-by: Michael Witten <mfwitten@gmail.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r-- | tools/perf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index be3eb1dc9a5a..94f73abdc56a 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -326,7 +326,7 @@ grep-libs = $(filter -l%,$(1)) | |||
326 | strip-libs = $(filter-out -l%,$(1)) | 326 | strip-libs = $(filter-out -l%,$(1)) |
327 | 327 | ||
328 | $(OUTPUT)python/perf.so: $(PYRF_OBJS) | 328 | $(OUTPUT)python/perf.so: $(PYRF_OBJS) |
329 | @python util/setup.py --quiet build_ext --build-lib='$(OUTPUT)python' \ | 329 | $(QUIET_GEN)python util/setup.py --quiet build_ext --build-lib='$(OUTPUT)python' \ |
330 | --build-temp='$(OUTPUT)python/temp' | 330 | --build-temp='$(OUTPUT)python/temp' |
331 | # | 331 | # |
332 | # No Perl scripts right now: | 332 | # No Perl scripts right now: |