summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@intel.com>2011-04-21 02:41:58 -0500
committerSaul Wold <sgw@linux.intel.com>2011-05-06 17:44:23 -0700
commitaa37762223fba8836f7a1ce09498fe7ac8851bdb (patch)
treebebc52aa40e26b71c387c72b1e94a1276ac07375 /meta
parent5570e0ae78e513d779962dbe6788d6ed54526384 (diff)
downloadpoky-aa37762223fba8836f7a1ce09498fe7ac8851bdb.tar.gz
linux-tools.inc: turn off newt and dwarf for perf
Turn these off for now to avoid the host infection issues for perf. Fixes yocto [BUGID #994]. (From OE-Core rev: 51cf1ecab860269b3d822e2e372756b8bb8ffe26) Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-kernel/linux/linux-tools.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-kernel/linux/linux-tools.inc b/meta/recipes-kernel/linux/linux-tools.inc
index e42c8e3be7..c196611044 100644
--- a/meta/recipes-kernel/linux/linux-tools.inc
+++ b/meta/recipes-kernel/linux/linux-tools.inc
@@ -2,11 +2,11 @@
2# perf functionality from their tree. 2# perf functionality from their tree.
3 3
4do_compile_perf() { 4do_compile_perf() {
5 oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} 5 oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} NO_NEWT=1 NO_DWARF=1
6} 6}
7 7
8do_install_perf() { 8do_install_perf() {
9 oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} DESTDIR=${D} install 9 oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} DESTDIR=${D} install NO_NEWT=1 NO_DWARF=1
10} 10}
11 11
12 12