diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-09-22 09:29:58 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-09-22 09:29:58 +0000 |
| commit | ba056504ee58a2feb86786ce7c59e01366c81f83 (patch) | |
| tree | 7786b5bc81062fc859405753207c08af6b44adb8 /tools | |
| parent | fc1e925c16c417f08453509926b1186baa0c6228 (diff) | |
| download | rockbox-ba056504ee58a2feb86786ce7c59e01366c81f83.zip rockbox-ba056504ee58a2feb86786ce7c59e01366c81f83.tar.gz rockbox-ba056504ee58a2feb86786ce7c59e01366c81f83.tar.bz2 rockbox-ba056504ee58a2feb86786ce7c59e01366c81f83.tar.xz | |
The wildcard case must be last in the case switch
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5104 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/configure b/tools/configure index f868c52..8118858 100755 --- a/tools/configure +++ b/tools/configure @@ -265,16 +265,6 @@ if [ -z "$archos" ]; then archosrom="" ;; - *) - archos="recorder" - target="-DARCHOS_RECORDER" - shcc - tool="scramble" - output="ajbrec.ajz" - appextra="recorder" - archosrom="$pwd/rombox.ucl" - ;; - 3) archos="fmrecorder" target="-DARCHOS_FMRECORDER" @@ -326,6 +316,16 @@ if [ -z "$archos" ]; then archosrom="" ;; + *) + archos="recorder" + target="-DARCHOS_RECORDER" + shcc + tool="scramble" + output="ajbrec.ajz" + appextra="recorder" + archosrom="$pwd/rombox.ucl" + ;; + esac echo "Platform set to $archos" |