diff options
Diffstat (limited to 'meta/classes/package_ipk.bbclass')
-rw-r--r-- | meta/classes/package_ipk.bbclass | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass index 094ba09fcf..d003ae7e81 100644 --- a/meta/classes/package_ipk.bbclass +++ b/meta/classes/package_ipk.bbclass | |||
@@ -90,14 +90,9 @@ package_install_internal_ipk() { | |||
90 | 90 | ||
91 | opkg-cl ${ipkg_args} update | 91 | opkg-cl ${ipkg_args} update |
92 | 92 | ||
93 | # Uclibc builds don't provide this stuff... | 93 | for i in ${package_linguas}; do |
94 | if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then | 94 | opkg-cl ${ipkg_args} install $i |
95 | if [ ! -z "${package_linguas}" ]; then | 95 | done |
96 | for i in ${package_linguas}; do | ||
97 | opkg-cl ${ipkg_args} install $i | ||
98 | done | ||
99 | fi | ||
100 | fi | ||
101 | 96 | ||
102 | if [ ! -z "${package_to_install}" ]; then | 97 | if [ ! -z "${package_to_install}" ]; then |
103 | opkg-cl ${ipkg_args} install ${package_to_install} | 98 | opkg-cl ${ipkg_args} install ${package_to_install} |