diff options
author | Changqing Li <changqing.li@windriver.com> | 2018-08-01 13:57:01 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-02 09:30:11 +0100 |
commit | 67892cc11216ef272fc9c584530d1f50b62d39d2 (patch) | |
tree | 9ad1e2b49980631d8f4617c4f358b54257ffc5ed /meta/recipes-core | |
parent | 2b2dfec80b6ce45325dfaa4bdf680ad0cd0a8460 (diff) | |
download | poky-67892cc11216ef272fc9c584530d1f50b62d39d2.tar.gz |
libxml2: fix libxml2 ptest fails
for core-image-minimal image, missing these two dependency
will cause below warning and error:
warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
./test/icu_parse_test.xml generated an error
(From OE-Core rev: 848031cf0b89b752c6fedcb63fc6938642a87fd8)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/libxml/libxml2_2.9.8.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-core/libxml/libxml2_2.9.8.bb b/meta/recipes-core/libxml/libxml2_2.9.8.bb index 1f22bb0b07..27a648e97a 100644 --- a/meta/recipes-core/libxml/libxml2_2.9.8.bb +++ b/meta/recipes-core/libxml/libxml2_2.9.8.bb | |||
@@ -44,7 +44,12 @@ RDEPENDS_${PN}-ptest += "make ${@bb.utils.contains('PACKAGECONFIG', 'python', 'l | |||
44 | 44 | ||
45 | RDEPENDS_${PN}-python += "${@bb.utils.contains('PACKAGECONFIG', 'python', 'python3-core', '', d)}" | 45 | RDEPENDS_${PN}-python += "${@bb.utils.contains('PACKAGECONFIG', 'python', 'python3-core', '', d)}" |
46 | 46 | ||
47 | RDEPENDS_${PN}-ptest_append_libc-glibc = " glibc-gconv-ebcdic-us glibc-gconv-ibm1141 glibc-gconv-iso8859-5" | 47 | RDEPENDS_${PN}-ptest_append_libc-glibc = " glibc-gconv-ebcdic-us \ |
48 | glibc-gconv-ibm1141 \ | ||
49 | glibc-gconv-iso8859-5 \ | ||
50 | glibc-gconv-euc-jp \ | ||
51 | locale-base-en-us \ | ||
52 | " | ||
48 | 53 | ||
49 | export PYTHON_SITE_PACKAGES="${PYTHON_SITEPACKAGES_DIR}" | 54 | export PYTHON_SITE_PACKAGES="${PYTHON_SITEPACKAGES_DIR}" |
50 | 55 | ||