From patchwork Fri Apr 22 07:24:51 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [22/33] linux-tools.inc: turn off newt and dwarf for perf Date: Fri, 22 Apr 2011 07:24:51 -0000 From: Saul Wold X-Patchwork-Id: 2679 Message-Id: <0d1c3ff6fed2f7e663cd8b24f089a1ce2a91e8b4.1303453279.git.sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org Cc: Koen Kooi From: Tom Zanussi Turn these off for now to avoid the host infection issues for perf. Fixes yocto [BUGID #994]. Signed-off-by: Tom Zanussi --- meta/recipes-kernel/linux/linux-tools.inc | 4 ++-- 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 2ac74a5..d64c9be 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 }