diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-01-18 12:42:10 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-01-18 12:42:10 -0300 |
commit | 58faf58ac673072759ab324865264e97083e2463 (patch) | |
tree | 72fb91a453ede6ec387b3f06eda43fc9aa6cb611 /cross/cross-mips64el-unknown-linux-gnu-glibc/locale-gen | |
parent | 8b17c0c06c905cf95978e79c8077ac76304a37fd (diff) |
Preparing final mips64el-gcc
Diffstat (limited to 'cross/cross-mips64el-unknown-linux-gnu-glibc/locale-gen')
-rwxr-xr-x | cross/cross-mips64el-unknown-linux-gnu-glibc/locale-gen | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/cross/cross-mips64el-unknown-linux-gnu-glibc/locale-gen b/cross/cross-mips64el-unknown-linux-gnu-glibc/locale-gen deleted file mode 100755 index 5aff344c4..000000000 --- a/cross/cross-mips64el-unknown-linux-gnu-glibc/locale-gen +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh - -set -e - -LOCALEGEN=/etc/locale.gen -LOCALES=/usr/share/i18n/locales -if [ -n "$POSIXLY_CORRECT" ]; then - unset POSIXLY_CORRECT -fi - - -[ -f $LOCALEGEN -a -s $LOCALEGEN ] || exit 0; - -# Remove all old locale dir and locale-archive before generating new -# locale data. -rm -rf /usr/lib/locale/* || true - -umask 022 - -is_entry_ok() { - if [ -n "$locale" -a -n "$charset" ] ; then - true - else - echo "error: Bad entry '$locale $charset'" - false - fi -} - -echo "Generating locales..." -while read locale charset; do \ - case $locale in \#*) continue;; "") continue;; esac; \ - is_entry_ok || continue - echo -n " `echo $locale | sed 's/\([^.\@]*\).*/\1/'`"; \ - echo -n ".$charset"; \ - echo -n `echo $locale | sed 's/\([^\@]*\)\(\@.*\)*/\2/'`; \ - echo -n '...'; \ - if [ -f $LOCALES/$locale ]; then input=$locale; else \ - input=`echo $locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; fi; \ - localedef -i $input -c -f $charset -A /usr/share/locale/locale.alias $locale; \ - echo ' done'; \ -done < $LOCALEGEN -echo "Generation complete." |