>From 2182b6f32502ce3e614dafa0d1292ab728613211 Mon Sep 17 00:00:00 2001 From: Amy Fong <[email protected]> Date: Tue, 24 Sep 2013 16:59:38 -0400 Subject: [PATCH] java missing classes during compile
oe_makeclasspath uses an invalid test to see the package is native. (testing if the build arch and package arch are the same, if so, native) Rather, we test to see if PN is *-native or *-nativesdk. Signed-off-by: Amy Fong <[email protected]> --- classes/java.bbclass | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/classes/java.bbclass b/classes/java.bbclass index 464d8a8..ab51787 100644 --- a/classes/java.bbclass +++ b/classes/java.bbclass @@ -98,11 +98,14 @@ oe_makeclasspath() { case "$1" in -s) # take jar files from native staging if this is a -native recipe - if [ ${PACKAGE_ARCH} = ${BUILD_ARCH} ]; then + case "$PN" in + *-native|*-nativesdk) dir=${STAGING_DATADIR_JAVA_NATIVE} - else + ;; + *) dir=${STAGING_DATADIR_JAVA} - fi + ;; + esac ;; -*) bbfatal "oe_makeclasspath: unknown option: $1" -- 1.7.10.4 _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
