summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-09-20 06:50:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-09-20 06:50:29 +0000
commit0f434ebac996384618f613528ce650258c6ca1ed (patch)
tree2e022a152ba0e20a9528223814f113e2118116ce
parentc7b1bbeac6c4771afb9e169d9f260a2f2f337a07 (diff)
downloadrockbox-0f434ebac996384618f613528ce650258c6ca1ed.tar.gz
rockbox-0f434ebac996384618f613528ce650258c6ca1ed.zip
make the language selection work for sim builds too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2344 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 5d1df355c2..268ce302a8 100755
--- a/tools/configure
+++ b/tools/configure
@@ -253,12 +253,6 @@ if [ -z "$debug" ]; then
253 esac 253 esac
254fi 254fi
255 255
256if [ "yes" = "$simulator" ]; then
257 # we deal with the simulator Makefile separately
258 simul
259 exit
260fi
261
262################################################################## 256##################################################################
263# Figure out where the firmware code is! 257# Figure out where the firmware code is!
264# 258#
@@ -341,6 +335,12 @@ if [ -z "$language" ]; then
341fi 335fi
342 336
343 337
338if [ "yes" = "$simulator" ]; then
339 # we deal with the simulator Makefile separately
340 simul
341 exit
342fi
343
344sed > Makefile \ 344sed > Makefile \
345 -e "s,@FIRMDIR@,${firmdir},g" \ 345 -e "s,@FIRMDIR@,${firmdir},g" \
346 -e "s,@APPSDIR@,${appsdir},g" \ 346 -e "s,@APPSDIR@,${appsdir},g" \