aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Schuster <rschus@entw2.(none)>2009-03-09 11:57:43 +0100
committerRobert Schuster <rschus@entw2.(none)>2009-03-09 11:57:43 +0100
commita8a23e995d108ecdfc31129941671551c591bc6e (patch)
treea714ae38907cd625bd8f8c644209f8244ad0b7fd
parent3a9aa07cb0d0894c7bafa136e433fbcdd02ed41a (diff)
downloadopenembedded-a8a23e995d108ecdfc31129941671551c591bc6e.tar.gz
native.bbclass: Remove java specific stuff from do_stage again.
-rw-r--r--classes/native.bbclass9
1 files changed, 3 insertions, 6 deletions
diff --git a/classes/native.bbclass b/classes/native.bbclass
index 4f3856ccf5..69231e0b6b 100644
--- a/classes/native.bbclass
+++ b/classes/native.bbclass
@@ -82,14 +82,11 @@ export oldincludedir = "${STAGING_DIR_NATIVE}${layout_includedir}"
do_stage () {
if [ "${INHIBIT_NATIVE_STAGE_INSTALL}" != "1" ]
then
- if [ "${JAVA_NATIVE_STAGE_INSTALL}" = "1" ]
+ if [ "${AUTOTOOLS_NATIVE_STAGE_INSTALL}" != "1" ]
then
- java_stage
- elif [ "${AUTOTOOLS_NATIVE_STAGE_INSTALL}" = "1" ]
- then
- autotools_stage_all
- else
oe_runmake install
+ else
+ autotools_stage_all
fi
fi
}