diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-07-30 14:46:40 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-01 14:16:56 +0100 |
commit | 6243fb500406cf0ec758acb158dffcdb9a6aa027 (patch) | |
tree | 8adc95cdb0f94a4f3f6e95a5f41d0516546af11c /meta/classes/package_ipk.bbclass | |
parent | d8ddc1a3e5bbd15c3756653e57d613a53bdffccd (diff) | |
download | poky-6243fb500406cf0ec758acb158dffcdb9a6aa027.tar.gz |
package_{deb, rpm, ipk}.bbclass: fix 'lingusa' typo
(From OE-Core rev: 5e22d7d1fea7dfb14380de5692e4b2940781b518)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package_ipk.bbclass')
-rw-r--r-- | meta/classes/package_ipk.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass index b7afa835ed..16574e98b4 100644 --- a/meta/classes/package_ipk.bbclass +++ b/meta/classes/package_ipk.bbclass | |||
@@ -99,7 +99,7 @@ package_install_internal_ipk() { | |||
99 | local conffile="${INSTALL_CONF_IPK}" | 99 | local conffile="${INSTALL_CONF_IPK}" |
100 | local package_to_install="${INSTALL_PACKAGES_NORMAL_IPK}" | 100 | local package_to_install="${INSTALL_PACKAGES_NORMAL_IPK}" |
101 | local package_attemptonly="${INSTALL_PACKAGES_ATTEMPTONLY_IPK}" | 101 | local package_attemptonly="${INSTALL_PACKAGES_ATTEMPTONLY_IPK}" |
102 | local package_lingusa="${INSTALL_PACKAGES_LINGUAS_IPK}" | 102 | local package_linguas="${INSTALL_PACKAGES_LINGUAS_IPK}" |
103 | local package_multilib="${INSTALL_PACKAGES_MULTILIB_IPK}" | 103 | local package_multilib="${INSTALL_PACKAGES_MULTILIB_IPK}" |
104 | local task="${INSTALL_TASK_IPK}" | 104 | local task="${INSTALL_TASK_IPK}" |
105 | 105 | ||
@@ -111,8 +111,8 @@ package_install_internal_ipk() { | |||
111 | 111 | ||
112 | # Uclibc builds don't provide this stuff... | 112 | # Uclibc builds don't provide this stuff... |
113 | if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then | 113 | if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then |
114 | if [ ! -z "${package_lingusa}" ]; then | 114 | if [ ! -z "${package_linguas}" ]; then |
115 | for i in ${package_lingusa}; do | 115 | for i in ${package_linguas}; do |
116 | opkg-cl ${ipkg_args} install $i | 116 | opkg-cl ${ipkg_args} install $i |
117 | done | 117 | done |
118 | fi | 118 | fi |