From: Tom Zanussi Date: Thu, 21 Apr 2011 07:41:58 +0000 (-0500) Subject: linux-tools.inc: turn off newt and dwarf for perf X-Git-Tag: 2011-1~1678 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=51cf1ecab860269b3d822e2e372756b8bb8ffe26;p=openembedded-core.git 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]. Signed-off-by: Tom Zanussi --- diff --git a/meta/recipes-kernel/linux/linux-tools.inc b/meta/recipes-kernel/linux/linux-tools.inc index 2ac74a58b1..d64c9be8c6 100644 --- a/meta/recipes-kernel/linux/linux-tools.inc +++ b/meta/recipes-kernel/linux/linux-tools.inc @@ -2,11 +2,11 @@ # perf functionality from their tree. do_compile_perf() { - oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} + oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} NO_NEWT=1 NO_DWARF=1 } do_install_perf() { - oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} DESTDIR=${D} install + oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} DESTDIR=${D} install NO_NEWT=1 NO_DWARF=1 }