summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMing Liu <peter.x.liu@external.atlascopco.com>2017-04-23 08:54:53 +0200
committerMaxin B. John <maxin.john@intel.com>2017-05-29 13:45:49 +0300
commit5a5c198c791e0094c796949d15cb94a57c9a9453 (patch)
treefa74eb3fec25fbab17689133bbc1d71b17570726
parenta6ee05bced19c506d9ef4c19a3301ae2deff54b7 (diff)
downloadmeta-java-5a5c198c791e0094c796949d15cb94a57c9a9453.tar.gz
openjdk-8-cross.inc: fix wrong sysroot path
The '--with-sys-root' should be set to ${STAGING_DIR_HOST} but not ${STAGING_DIR}. Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com> Signed-off-by: Maxin B. John <maxin.john@intel.com>
-rw-r--r--recipes-core/openjdk/openjdk-8-cross.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-core/openjdk/openjdk-8-cross.inc b/recipes-core/openjdk/openjdk-8-cross.inc
index b328395..11e98b5 100644
--- a/recipes-core/openjdk/openjdk-8-cross.inc
+++ b/recipes-core/openjdk/openjdk-8-cross.inc
@@ -42,7 +42,7 @@ SRC_URI_append = "\
42EXTRA_OECONF_append = "\ 42EXTRA_OECONF_append = "\
43 --with-jobs=${@java_get_parallel_make(d)} \ 43 --with-jobs=${@java_get_parallel_make(d)} \
44 \ 44 \
45 --with-sys-root=${STAGING_DIR} \ 45 --with-sys-root=${STAGING_DIR_HOST} \
46 --with-tools-dir=${STAGING_DIR_NATIVE} \ 46 --with-tools-dir=${STAGING_DIR_NATIVE} \
47 --with-boot-jdk=${STAGING_LIBDIR_NATIVE}/jvm/openjdk-8-native \ 47 --with-boot-jdk=${STAGING_LIBDIR_NATIVE}/jvm/openjdk-8-native \
48 --with-cacerts-file=${STAGING_LIBDIR_NATIVE}/jvm/openjdk-8-native/jre/lib/security/cacerts \ 48 --with-cacerts-file=${STAGING_LIBDIR_NATIVE}/jvm/openjdk-8-native/jre/lib/security/cacerts \