From 331c1f1fe55939d61679e1c8c163b93b2879e29d Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Wed, 20 Mar 2013 15:21:30 -0700 Subject: 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 Signed-off-by: Richard Purdie --- meta/classes/package_deb.bbclass | 4 ---- 1 file changed, 4 deletions(-) (limited to 'meta/classes/package_deb.bbclass') diff --git a/meta/classes/package_deb.bbclass b/meta/classes/package_deb.bbclass index 3174184af1..84b1c522e7 100644 --- a/meta/classes/package_deb.bbclass +++ b/meta/classes/package_deb.bbclass @@ -104,10 +104,6 @@ package_install_internal_deb () { # Uclibc builds don't provide this stuff.. if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; 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 apt-get install $i --force-yes --allow-unauthenticated if [ $? -ne 0 ]; then -- cgit v1.2.3-54-g00ecf