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:51:58 +0300
commit87f62f5264c19e9979ffda06a300cf473ec06b52 (patch)
treefa74eb3fec25fbab17689133bbc1d71b17570726
parentfa9d6b8dfe146bab22a98ec654992561f72ee5ed (diff)
downloadmeta-java-87f62f5264c19e9979ffda06a300cf473ec06b52.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 \