summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-03 21:56:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-03 21:56:48 +0000
commit63787dffdee831559ecda2d1d1593e3638e76e7a (patch)
tree0d4c073c616968277e463cc8d054b4c9cc1014bf /tools
parent2d4f717adc823c0a3c61c503163b896dd84d1904 (diff)
downloadrockbox-63787dffdee831559ecda2d1d1593e3638e76e7a.tar.gz
rockbox-63787dffdee831559ecda2d1d1593e3638e76e7a.zip
now configure update works for simulator builds too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@878 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index edf47e6b9e..d0b8cc0462 100755
--- a/tools/configure
+++ b/tools/configure
@@ -97,6 +97,10 @@ if [ "$target" = "update" ]; then
echo "Existing generated Makefile found. Getting defaults from it."
target=`grep "^TARGET=" Makefile | cut -d= -f2-`
debug=`grep "^DEBUG=" Makefile | cut -d= -f2-`
+
+ if [ "$debug" = "SIMULATOR=1" ]; then
+ simulator="yes"
+ fi
fi
fi
else