diff options
| author | Michael Chicoine <mc2739@gmail.com> | 2009-12-10 19:48:14 +0000 |
|---|---|---|
| committer | Michael Chicoine <mc2739@gmail.com> | 2009-12-10 19:48:14 +0000 |
| commit | ec64954c667628ab856b8c60b666e2b1eda50824 (patch) | |
| tree | 8a744a48e2f532daf97b6674064c4ab002956547 | |
| parent | 0a165d16d43dc7e76d8a29d54208a706c72d446e (diff) | |
| download | rockbox-ec64954c667628ab856b8c60b666e2b1eda50824.zip rockbox-ec64954c667628ab856b8c60b666e2b1eda50824.tar.gz rockbox-ec64954c667628ab856b8c60b666e2b1eda50824.tar.bz2 rockbox-ec64954c667628ab856b8c60b666e2b1eda50824.tar.xz | |
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-x | tools/configure | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index fa7be45..3d9c503 100755 --- a/tools/configure +++ b/tools/configure @@ -2543,6 +2543,10 @@ fi echo "Bootloader build selected" ;; [Ss]) + if [ "$modelname" = "sansae200r" ]; then + echo "Do not use the e200R target for simulator builds. Use e200 instead." + exit 8 + fi debug="-DDEBUG" simulator="yes" extradefines="-DSIMULATOR" |