diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2006-01-09 10:43:51 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2006-01-09 10:43:51 +0000 |
| commit | d2a10f5676a4ab53aec437bd5976e2aef6bde0a4 (patch) | |
| tree | 934e6438be8c204cee5f65d0fc375762ac9e8ab5 /tools | |
| parent | 186d468588268d91a5f59793c80d44380e822481 (diff) | |
| download | rockbox-d2a10f5676a4ab53aec437bd5976e2aef6bde0a4.zip rockbox-d2a10f5676a4ab53aec437bd5976e2aef6bde0a4.tar.gz rockbox-d2a10f5676a4ab53aec437bd5976e2aef6bde0a4.tar.bz2 rockbox-d2a10f5676a4ab53aec437bd5976e2aef6bde0a4.tar.xz | |
removed the language choice, now always uses english built-in
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8311 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 43 |
1 files changed, 2 insertions, 41 deletions
diff --git a/tools/configure b/tools/configure index fc8a52e..042080f 100755 --- a/tools/configure +++ b/tools/configure @@ -270,34 +270,6 @@ if [ -z "$simver" ]; then fi } -picklang() { - # figure out which languages that are around - for file in $rootdir/apps/lang/*.lang; do - clean=`echo $file | sed -e 's:.*/::g' | cut "-d." -f1` - langs="$langs $clean" - done - - num=1 - for one in $langs; do - echo "$num. $one" - num=`expr $num + 1` - done - - read pick - return $pick; -} - -whichlang() { - num=1 - for one in $langs; do - if [ "$num" = "$pick" ]; then - echo $one - return - fi - num=`expr $num + 1` - done -} - if test "$1" = "--help"; then echo "Rockbox configure script." echo "Invoke this in a directory to generate a Makefile to build Rockbox" @@ -757,19 +729,8 @@ fi whichaddr -############################################################################ -# language - - echo "Select a number for the language to use (default is english)" - - picklang - language=`whichlang` - - if [ -z "$language" ]; then - # pick a default - language="english" - fi - echo "Language set to $language" +# this was once possible to change at build-time, but no more: +language="english" uname=`uname` |