mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 06:49:33 +02:00
package_deb: don't install glibc-localedata-i18n separately
This was removed from package_rpm and package_ipk years ago, and shouldn't be needed, installing the packages from package_linguas should be sufficient. (From OE-Core rev: e9485c7077e5a9508371bbbbebdaaf1e9685da61) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
99f8d0242a
commit
331c1f1fe5
@@ -104,10 +104,6 @@ package_install_internal_deb () {
|
|||||||
# Uclibc builds don't provide this stuff..
|
# Uclibc builds don't provide this stuff..
|
||||||
if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then
|
if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then
|
||||||
if [ ! -z "${package_linguas}" ]; then
|
if [ ! -z "${package_linguas}" ]; then
|
||||||
apt-get install glibc-localedata-i18n --force-yes --allow-unauthenticated
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
for i in ${package_linguas}; do
|
for i in ${package_linguas}; do
|
||||||
apt-get install $i --force-yes --allow-unauthenticated
|
apt-get install $i --force-yes --allow-unauthenticated
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user