diff options
author | Christopher Larson <chris_larson@mentor.com> | 2013-03-20 15:21:30 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-22 16:54:38 +0000 |
commit | 331c1f1fe55939d61679e1c8c163b93b2879e29d (patch) | |
tree | 793130febe89815925bac90e0d351c597652bb51 /meta | |
parent | 99f8d0242acc9a13049ded34c058b56722c1a0dd (diff) | |
download | poky-331c1f1fe55939d61679e1c8c163b93b2879e29d.tar.gz |
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>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/package_deb.bbclass | 4 |
1 files changed, 0 insertions, 4 deletions
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 () { | |||
104 | # Uclibc builds don't provide this stuff.. | 104 | # Uclibc builds don't provide this stuff.. |
105 | if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then | 105 | if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then |
106 | if [ ! -z "${package_linguas}" ]; then | 106 | if [ ! -z "${package_linguas}" ]; then |
107 | apt-get install glibc-localedata-i18n --force-yes --allow-unauthenticated | ||
108 | if [ $? -ne 0 ]; then | ||
109 | exit 1 | ||
110 | fi | ||
111 | for i in ${package_linguas}; do | 107 | for i in ${package_linguas}; do |
112 | apt-get install $i --force-yes --allow-unauthenticated | 108 | apt-get install $i --force-yes --allow-unauthenticated |
113 | if [ $? -ne 0 ]; then | 109 | if [ $? -ne 0 ]; then |