diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-06-03 21:56:48 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-03 21:56:48 +0000 |
| commit | 63787dffdee831559ecda2d1d1593e3638e76e7a (patch) | |
| tree | 0d4c073c616968277e463cc8d054b4c9cc1014bf | |
| parent | 2d4f717adc823c0a3c61c503163b896dd84d1904 (diff) | |
| download | rockbox-63787dffdee831559ecda2d1d1593e3638e76e7a.zip rockbox-63787dffdee831559ecda2d1d1593e3638e76e7a.tar.gz rockbox-63787dffdee831559ecda2d1d1593e3638e76e7a.tar.bz2 rockbox-63787dffdee831559ecda2d1d1593e3638e76e7a.tar.xz | |
now configure update works for simulator builds too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@878 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/configure | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index edf47e6..d0b8cc0 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 |