summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-09-22 09:29:58 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-09-22 09:29:58 +0000
commitba056504ee58a2feb86786ce7c59e01366c81f83 (patch)
tree7786b5bc81062fc859405753207c08af6b44adb8
parentfc1e925c16c417f08453509926b1186baa0c6228 (diff)
downloadrockbox-ba056504ee58a2feb86786ce7c59e01366c81f83.tar.gz
rockbox-ba056504ee58a2feb86786ce7c59e01366c81f83.zip
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
-rwxr-xr-xtools/configure20
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/configure b/tools/configure
index f868c528ba..8118858d2f 100755
--- a/tools/configure
+++ b/tools/configure
@@ -265,16 +265,6 @@ if [ -z "$archos" ]; then
265 archosrom="" 265 archosrom=""
266 ;; 266 ;;
267 267
268 *)
269 archos="recorder"
270 target="-DARCHOS_RECORDER"
271 shcc
272 tool="scramble"
273 output="ajbrec.ajz"
274 appextra="recorder"
275 archosrom="$pwd/rombox.ucl"
276 ;;
277
278 3) 268 3)
279 archos="fmrecorder" 269 archos="fmrecorder"
280 target="-DARCHOS_FMRECORDER" 270 target="-DARCHOS_FMRECORDER"
@@ -326,6 +316,16 @@ if [ -z "$archos" ]; then
326 archosrom="" 316 archosrom=""
327 ;; 317 ;;
328 318
319 *)
320 archos="recorder"
321 target="-DARCHOS_RECORDER"
322 shcc
323 tool="scramble"
324 output="ajbrec.ajz"
325 appextra="recorder"
326 archosrom="$pwd/rombox.ucl"
327 ;;
328
329 esac 329 esac
330 330
331 echo "Platform set to $archos" 331 echo "Platform set to $archos"