diff options
author | Richard Purdie <richard@openedhand.com> | 2007-09-01 23:49:12 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-09-01 23:49:12 +0000 |
commit | 63b739f0fe03873402731f0cf9992551540c16df (patch) | |
tree | fa3f2ef3988648402d2bdacaa72aab73f29a2f77 /meta/classes/rootfs_ipk.bbclass | |
parent | 8d342dc0569fb4274b8ac9dfe40b1ce8543799f4 (diff) | |
download | poky-63b739f0fe03873402731f0cf9992551540c16df.tar.gz |
classes: Sync various tweaks from OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2643 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/rootfs_ipk.bbclass')
-rw-r--r-- | meta/classes/rootfs_ipk.bbclass | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes/rootfs_ipk.bbclass index 3c9d03f9dd..50df68c76f 100644 --- a/meta/classes/rootfs_ipk.bbclass +++ b/meta/classes/rootfs_ipk.bbclass | |||
@@ -19,11 +19,15 @@ fakeroot rootfs_ipk_do_rootfs () { | |||
19 | mkdir -p ${T} | 19 | mkdir -p ${T} |
20 | 20 | ||
21 | ipkg-cl ${IPKG_ARGS} update | 21 | ipkg-cl ${IPKG_ARGS} update |
22 | if [ ! -z "${LINGUAS_INSTALL}" ]; then | 22 | |
23 | ipkg-cl ${IPKG_ARGS} install glibc-localedata-i18n | 23 | # Uclibc builds don't provide this stuff... |
24 | for i in ${LINGUAS_INSTALL}; do | 24 | if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then |
25 | ipkg-cl ${IPKG_ARGS} install $i | 25 | if [ ! -z "${LINGUAS_INSTALL}" ]; then |
26 | done | 26 | ipkg-cl ${IPKG_ARGS} install glibc-localedata-i18n |
27 | for i in ${LINGUAS_INSTALL}; do | ||
28 | ipkg-cl ${IPKG_ARGS} install $i | ||
29 | done | ||
30 | fi | ||
27 | fi | 31 | fi |
28 | if [ ! -z "${PACKAGE_INSTALL}" ]; then | 32 | if [ ! -z "${PACKAGE_INSTALL}" ]; then |
29 | ipkg-cl ${IPKG_ARGS} install ${PACKAGE_INSTALL} | 33 | ipkg-cl ${IPKG_ARGS} install ${PACKAGE_INSTALL} |