summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-10-17 09:14:57 +0000
committerRobert Hak <adiamas@rockbox.org>2002-10-17 09:14:57 +0000
commit9465d4e59bb1407e2e8a40b54f653d6abb9bffd1 (patch)
treef1bfb9322da022af86605afa6cc679725a845174
parent54a51a075416e38d4e06e9e7c4a157a4ac7ea95c (diff)
downloadrockbox-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
-rwxr-xr-xtools/configure12
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
273 [Ss]) 273 [Ss])
274 debug="SIMULATOR=1" 274 debug="SIMULATOR=1"
275 simulator="yes" 275 simulator="yes"
276 simul
276 ;; 277 ;;
277 [Dd]) 278 [Dd])
278 debug="DEBUG=1" 279 debug="DEBUG=1"
@@ -324,12 +325,6 @@ if [ -z "$appsdir" ]; then
324 appsdir=`input` 325 appsdir=`input`
325fi 326fi
326 327
327if [ "yes" = "$simulator" ]; then
328 # we have already dealt with the simulator Makefile separately
329 simul
330 exit
331fi
332
333if [ -z "$language" ]; then 328if [ -z "$language" ]; then
334 329
335 echo "Select a number for the language to use (default is english)" 330 echo "Select a number for the language to use (default is english)"
@@ -343,6 +338,11 @@ if [ -z "$language" ]; then
343 fi 338 fi
344fi 339fi
345 340
341if [ "yes" = "$simulator" ]; then
342 # we have already dealt with the simulator Makefile separately
343 exit
344fi
345
346sed > Makefile \ 346sed > Makefile \
347 -e "s,@FIRMDIR@,${firmdir},g" \ 347 -e "s,@FIRMDIR@,${firmdir},g" \
348 -e "s,@APPSDIR@,${appsdir},g" \ 348 -e "s,@APPSDIR@,${appsdir},g" \