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
This commit is contained in:
Michael Chicoine 2009-12-10 19:48:14 +00:00
parent 0a165d16d4
commit ec64954c66

4
tools/configure vendored
View file

@ -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"