summaryrefslogtreecommitdiffstats
path: root/meta/classes/package_ipk.bbclass
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-07-30 14:46:40 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-01 14:16:56 +0100
commit6243fb500406cf0ec758acb158dffcdb9a6aa027 (patch)
tree8adc95cdb0f94a4f3f6e95a5f41d0516546af11c /meta/classes/package_ipk.bbclass
parentd8ddc1a3e5bbd15c3756653e57d613a53bdffccd (diff)
downloadpoky-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.bbclass6
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