diff options
| author | Cole Robinson <crobinso@redhat.com> | 2016-05-06 14:03:08 -0400 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2016-05-11 08:02:40 +0200 |
| commit | e07047cfd777ec92073ed81fcb383e1857aefef1 (patch) | |
| tree | 1ffff99ee40ab892d2181a603a30c55ae824c084 | |
| parent | ee8466d0ea1db1d19e1d56817df0668eeb6924eb (diff) | |
| download | focaccia-qemu-e07047cfd777ec92073ed81fcb383e1857aefef1.tar.gz focaccia-qemu-e07047cfd777ec92073ed81fcb383e1857aefef1.zip | |
configure: error on unknown --with-sdlabi value
I accidentally tried --with-sdlabi="1.0", and it failed much later in a weird way. Instead, throw an error if the value isn't in our whitelist. Signed-off-by: Cole Robinson <crobinso@redhat.com> Message-id: 60e4822e17697d257a914df03bdb9fff4b4c0490.1462557436.git.crobinso@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to '')
| -rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure index 0b53facfb2..8e25a2456c 100755 --- a/configure +++ b/configure @@ -2434,9 +2434,11 @@ if test $sdlabi = "2.0"; then sdl_config=$sdl2_config sdlname=sdl2 sdlconfigname=sdl2_config -else +elif test $sdlabi = "1.2"; then sdlname=sdl sdlconfigname=sdl_config +else + error_exit "Unknown sdlabi $sdlabi, must be 1.2 or 2.0" fi if test "`basename $sdl_config`" != $sdlconfigname && ! has ${sdl_config}; then |