From 38854a11011a6bed662a09214356d1aaace9fd7a Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 19 Mar 2008 15:35:13 +0000 Subject: autotools.bbclass/native.bbclass: Use autotools_stage_all instead of oe_runmake install for staging autotooled native packages (from OE.dev) git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4056 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- meta/classes/native.bbclass | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'meta/classes/native.bbclass') diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index 8f2b6f3fec..ddbbc04e19 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass @@ -1,5 +1,3 @@ -inherit base - # Native packages are built indirectly via dependency, # no need for them to be a direct target of 'world' EXCLUDE_FROM_WORLD = "1" @@ -78,7 +76,12 @@ export oldincludedir = "${STAGING_DIR_NATIVE}${layout_includedir}" do_stage () { if [ "${INHIBIT_NATIVE_STAGE_INSTALL}" != "1" ] then - oe_runmake install + if [ "${AUTOTOOLS_NATIVE_STAGE_INSTALL}" != "1"] + then + oe_runmake install + else + autotools_stage_all + fi fi } -- cgit v1.2.3-54-g00ecf