diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-12-07 16:57:04 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-12-07 16:57:50 -0500 |
commit | 93baf94dc33a83758d15c26545380f465073e8dc (patch) | |
tree | 3605f261f5089f68272e72b5b1467328cf9b67e5 | |
parent | 197d0579bd149a17c0c695d78d945907a1100b55 (diff) | |
download | rockbox-93baf94dc3.tar.gz rockbox-93baf94dc3.zip |
configure: Disallow 'sdlapp' to be build as a simulator target.
Change-Id: I52cf549aa8a24080832413ca5afb197047b42bd7
-rwxr-xr-x | tools/configure | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index ef87266773..ddf1b93c7b 100755 --- a/tools/configure +++ b/tools/configure @@ -4398,6 +4398,9 @@ fi if [ "$modelname" = "sansae200r" ]; then echo "Do not use the e200R target for simulator builds. Use e200 instead." exit 8 + elif [ "$modelname" = "sdlapp" ]; then + echo "Do not use sdlapp for simulator builds; it is already a native SDL application." + exit 8 fi debug="-DDEBUG" simulator="yes" |