diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-09-20 06:50:29 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-09-20 06:50:29 +0000 |
| commit | 0f434ebac996384618f613528ce650258c6ca1ed (patch) | |
| tree | 2e022a152ba0e20a9528223814f113e2118116ce | |
| parent | c7b1bbeac6c4771afb9e169d9f260a2f2f337a07 (diff) | |
| download | rockbox-0f434ebac996384618f613528ce650258c6ca1ed.zip rockbox-0f434ebac996384618f613528ce650258c6ca1ed.tar.gz rockbox-0f434ebac996384618f613528ce650258c6ca1ed.tar.bz2 rockbox-0f434ebac996384618f613528ce650258c6ca1ed.tar.xz | |
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-x | tools/configure | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/configure b/tools/configure index 5d1df35..268ce30 100755 --- a/tools/configure +++ b/tools/configure @@ -253,12 +253,6 @@ if [ -z "$debug" ]; then esac fi -if [ "yes" = "$simulator" ]; then - # we deal with the simulator Makefile separately - simul - exit -fi - ################################################################## # Figure out where the firmware code is! # @@ -341,6 +335,12 @@ if [ -z "$language" ]; then fi +if [ "yes" = "$simulator" ]; then + # we deal with the simulator Makefile separately + simul + exit +fi + sed > Makefile \ -e "s,@FIRMDIR@,${firmdir},g" \ -e "s,@APPSDIR@,${appsdir},g" \ |