From: Robert Schuster Date: Mon, 9 Mar 2009 10:57:43 +0000 (+0100) Subject: native.bbclass: Remove java specific stuff from do_stage again. X-Git-Tag: Release-2010-05/1~3821 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8a23e995d108ecdfc31129941671551c591bc6e;p=openembedded.git native.bbclass: Remove java specific stuff from do_stage again. --- 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 }