From d2a10f5676a4ab53aec437bd5976e2aef6bde0a4 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 9 Jan 2006 10:43:51 +0000 Subject: 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 --- tools/configure | 43 ++----------------------------------------- 1 file changed, 2 insertions(+), 41 deletions(-) diff --git a/tools/configure b/tools/configure index fc8a52e058..042080ff94 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` -- cgit v1.2.3