diff options
author | Koen Kooi <koen@openembedded.org> | 2007-08-28 03:32:37 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-08-28 03:32:37 +0000 |
commit | 579019b1aef8fe103cf266d418bb90532c635e4b (patch) | |
tree | e209179b1682538fd395764143a13e4dec0bf5c0 /classes/rootfs_deb.bbclass | |
parent | 6d2c8ffba73f38f1f57e01e6387ac9ba848e5dd6 (diff) |
rootfs*.bbclass: uclibc doesn't provides glibc-locale* and locale-base*, so don't try to install it
Diffstat (limited to 'classes/rootfs_deb.bbclass')
-rw-r--r-- | classes/rootfs_deb.bbclass | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/classes/rootfs_deb.bbclass b/classes/rootfs_deb.bbclass index 67fa661308..32b1c57f1a 100644 --- a/classes/rootfs_deb.bbclass +++ b/classes/rootfs_deb.bbclass @@ -53,19 +53,21 @@ fakeroot rootfs_deb_do_rootfs () { _getflag () { cat ${IMAGE_ROOTFS}/var/dpkg/status | sed -n -e "/^Package: $2\$/{n; s/Status: install ok .*/$1/; p}" } - - if [ ! -z "${LINGUAS_INSTALL}" ]; then - apt-get install glibc-localedata-i18n --force-yes --allow-unauthenticated - if [ $? -ne 0 ]; then - exit $? - fi - for i in ${LINGUAS_INSTALL}; do - apt-get install $i --force-yes --allow-unauthenticated - if [ $? -ne 0 ]; then - exit $? - fi - done - fi + + if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then + if [ ! -z "${LINGUAS_INSTALL}" ]; then + apt-get install glibc-localedata-i18n --force-yes --allow-unauthenticated + if [ $? -ne 0 ]; then + exit $? + fi + for i in ${LINGUAS_INSTALL}; do + apt-get install $i --force-yes --allow-unauthenticated + if [ $? -ne 0 ]; then + exit $? + fi + done + fi + fi if [ ! -z "${PACKAGE_INSTALL}" ]; then for i in ${PACKAGE_INSTALL}; do |