summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Chicoine <mc2739@gmail.com>2009-12-10 19:48:14 +0000
committerMichael Chicoine <mc2739@gmail.com>2009-12-10 19:48:14 +0000
commitec64954c667628ab856b8c60b666e2b1eda50824 (patch)
tree8a744a48e2f532daf97b6674064c4ab002956547
parent0a165d16d43dc7e76d8a29d54208a706c72d446e (diff)
downloadrockbox-ec64954c667628ab856b8c60b666e2b1eda50824.tar.gz
rockbox-ec64954c667628ab856b8c60b666e2b1eda50824.zip
tools/configure does not let you select normal build for sansae200r - add similar logic for the simulator build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23922 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index fa7be456f6..3d9c503fd9 100755
--- a/tools/configure
+++ b/tools/configure
@@ -2543,6 +2543,10 @@ fi
2543 echo "Bootloader build selected" 2543 echo "Bootloader build selected"
2544 ;; 2544 ;;
2545 [Ss]) 2545 [Ss])
2546 if [ "$modelname" = "sansae200r" ]; then
2547 echo "Do not use the e200R target for simulator builds. Use e200 instead."
2548 exit 8
2549 fi
2546 debug="-DDEBUG" 2550 debug="-DDEBUG"
2547 simulator="yes" 2551 simulator="yes"
2548 extradefines="-DSIMULATOR" 2552 extradefines="-DSIMULATOR"