lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <tip-9c56dfeb784a586713f467e2028a127a2a58a238@git.kernel.org> Date: Tue, 8 Feb 2011 15:15:47 GMT From: tip-bot for Michael Witten <mfwitten@...il.com> To: linux-tip-commits@...r.kernel.org Cc: acme@...hat.com, linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com, mfwitten@...il.com, tglx@...utronix.de Subject: [tip:perf/core] perf tools: Makefile: Use $(QUIET_GEN) for perf.so Commit-ID: 9c56dfeb784a586713f467e2028a127a2a58a238 Gitweb: http://git.kernel.org/tip/9c56dfeb784a586713f467e2028a127a2a58a238 Author: Michael Witten <mfwitten@...il.com> AuthorDate: Thu, 3 Feb 2011 22:10:55 -0600 Committer: Arnaldo Carvalho de Melo <acme@...hat.com> CommitDate: Mon, 7 Feb 2011 08:38:03 -0200 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@...il.com> Signed-off-by: Michael Witten <mfwitten@...il.com> Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com> --- tools/perf/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/perf/Makefile b/tools/perf/Makefile index be3eb1d..94f73ab 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile @@ -326,7 +326,7 @@ grep-libs = $(filter -l%,$(1)) strip-libs = $(filter-out -l%,$(1)) $(OUTPUT)python/perf.so: $(PYRF_OBJS) - @python util/setup.py --quiet build_ext --build-lib='$(OUTPUT)python' \ + $(QUIET_GEN)python util/setup.py --quiet build_ext --build-lib='$(OUTPUT)python' \ --build-temp='$(OUTPUT)python/temp' # # No Perl scripts right now: -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists