diff options
author | Robert Hak <adiamas@rockbox.org> | 2002-10-17 09:14:57 +0000 |
---|---|---|
committer | Robert Hak <adiamas@rockbox.org> | 2002-10-17 09:14:57 +0000 |
commit | 9465d4e59bb1407e2e8a40b54f653d6abb9bffd1 (patch) | |
tree | f1bfb9322da022af86605afa6cc679725a845174 /tools | |
parent | 54a51a075416e38d4e06e9e7c4a157a4ac7ea95c (diff) | |
download | rockbox-9465d4e59bb1407e2e8a40b54f653d6abb9bffd1.tar.gz rockbox-9465d4e59bb1407e2e8a40b54f653d6abb9bffd1.zip |
bug fix on my part
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2695 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/configure b/tools/configure index 620d9941a7..b62e82ad52 100755 --- a/tools/configure +++ b/tools/configure @@ -273,6 +273,7 @@ if [ -z "$debug" ]; then [Ss]) debug="SIMULATOR=1" simulator="yes" + simul ;; [Dd]) debug="DEBUG=1" @@ -324,12 +325,6 @@ if [ -z "$appsdir" ]; then appsdir=`input` fi -if [ "yes" = "$simulator" ]; then - # we have already dealt with the simulator Makefile separately - simul - exit -fi - if [ -z "$language" ]; then echo "Select a number for the language to use (default is english)" @@ -343,6 +338,11 @@ if [ -z "$language" ]; then fi fi +if [ "yes" = "$simulator" ]; then + # we have already dealt with the simulator Makefile separately + exit +fi + sed > Makefile \ -e "s,@FIRMDIR@,${firmdir},g" \ -e "s,@APPSDIR@,${appsdir},g" \ |