]> code.ossystems Code Review - openembedded-core.git/commitdiff
bash: add iso8859-1 gconv RDEPENDS needed by bash-ptest.
authorSakib Sajal <sakib.sajal@windriver.com>
Tue, 28 May 2019 14:31:03 +0000 (10:31 -0400)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 28 May 2019 23:11:55 +0000 (00:11 +0100)
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.

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>
meta/recipes-extended/bash/bash.inc

index 4b3692c61398f3586d4ae9410d7d0dd8651abe27..1e4dc55d01de244865ebd62fb86bf6dd25eea050 100644 (file)
@@ -26,8 +26,15 @@ RDEPENDS_${PN}_class-nativesdk = ""
 RDEPENDS_${PN}-ptest += "make coreutils perl"
 
 DEPENDS_append_libc-glibc = " virtual/libc-locale"
-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"
-
+RDEPENDS_${PN}-ptest_append_libc-glibc = " \
+       glibc-gconv-iso8859-1 \
+       glibc-utils \
+       locale-base-de-de \
+       locale-base-en-us \
+       locale-base-fr-fr \
+       locale-base-fr-fr.iso-8859-1 \
+       locale-base-zh-hk.big5-hkscs \
+       "
 USERADD_PACKAGES = "${PN}-ptest"
 USERADD_PARAM_${PN}-ptest = "--create-home --user-group test"