diff options
author | Denys Dmytriyenko <denys@ti.com> | 2018-01-09 14:04:25 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-12 08:43:55 +0000 |
commit | 6454c610eb6565360d29334f5f19845758dbf2c6 (patch) | |
tree | 3dd1de803ce20b3bdd9bc0f129e391173ebcb70e | |
parent | 0341a3c44e511d3246096edd3009432805e57b89 (diff) | |
download | openembedded-core-6454c610eb6565360d29334f5f19845758dbf2c6.tar.gz openembedded-core-6454c610eb6565360d29334f5f19845758dbf2c6.tar.bz2 openembedded-core-6454c610eb6565360d29334f5f19845758dbf2c6.zip |
bash: ptest dependency on locale should honor virtual/libc-locale
meta/conf/distro/include/tclibc-glibc.inc weakly assigns PREFERRED_PROVIDER
for virtual/libc-locale to glibc-locale, but allows adjusting it if needed.
Hence, bash should not depend on glibc-locale directly, but instead use this
virtual/libc-locale variable.
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/bash/bash.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index 89c35bd59c..9c2b065f9f 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc @@ -25,7 +25,7 @@ RDEPENDS_${PN} += "base-files" RDEPENDS_${PN}_class-nativesdk = "" RDEPENDS_${PN}-ptest += "make" -DEPENDS_append_libc-glibc = " glibc-locale" +DEPENDS_append_libc-glibc = " virtual/libc-locale" RDEPENDS_${PN}-ptest_append_libc-glibc = " locale-base-fr-fr locale-base-de-de" USERADD_PACKAGES = "${PN}-ptest" |