diff options
author | Sakib Sajal <sakib.sajal@windriver.com> | 2019-05-28 10:31:03 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-29 12:54:12 +0100 |
commit | 124ac408d46b78814c2a397631aa74e1c6eeff6c (patch) | |
tree | 399341dd1b428f97444575578fd2cd0105f345ad /meta/recipes-extended/bash | |
parent | 57d29416ca79acb9b0419faf262be015993ecc13 (diff) | |
download | poky-124ac408d46b78814c2a397631aa74e1c6eeff6c.tar.gz |
bash: add iso8859-1 gconv RDEPENDS needed by bash-ptest.
One of the ptests failed for internationalization.
>From the failed ptest log:
run-intl
fr_FR.ISO8859-1: Error Encoding U+00000080 to [ "$'\200'" != "\\u0080" ]
(125 similar errors related to same encoding)
The test was unable to convert iso8859-1 encoding to perform comparison.
(From OE-Core rev: ec1849d7a5964bef53462b9d4763e22433f9d246)
Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com>
Signed-off-by: Randy Macleod <randy.macleod@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/bash')
-rw-r--r-- | meta/recipes-extended/bash/bash.inc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index 4b3692c613..1e4dc55d01 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc | |||
@@ -26,8 +26,15 @@ RDEPENDS_${PN}_class-nativesdk = "" | |||
26 | RDEPENDS_${PN}-ptest += "make coreutils perl" | 26 | RDEPENDS_${PN}-ptest += "make coreutils perl" |
27 | 27 | ||
28 | DEPENDS_append_libc-glibc = " virtual/libc-locale" | 28 | DEPENDS_append_libc-glibc = " virtual/libc-locale" |
29 | RDEPENDS_${PN}-ptest_append_libc-glibc = " locale-base-en-us locale-base-fr-fr locale-base-fr-fr.iso-8859-1 locale-base-de-de locale-base-zh-hk.big5-hkscs glibc-utils" | 29 | RDEPENDS_${PN}-ptest_append_libc-glibc = " \ |
30 | 30 | glibc-gconv-iso8859-1 \ | |
31 | glibc-utils \ | ||
32 | locale-base-de-de \ | ||
33 | locale-base-en-us \ | ||
34 | locale-base-fr-fr \ | ||
35 | locale-base-fr-fr.iso-8859-1 \ | ||
36 | locale-base-zh-hk.big5-hkscs \ | ||
37 | " | ||
31 | USERADD_PACKAGES = "${PN}-ptest" | 38 | USERADD_PACKAGES = "${PN}-ptest" |
32 | USERADD_PARAM_${PN}-ptest = "--create-home --user-group test" | 39 | USERADD_PARAM_${PN}-ptest = "--create-home --user-group test" |
33 | 40 | ||