-n - not -z!

SVN revision: 46424
This commit is contained in:
Carsten Haitzler 2010-02-24 07:35:32 +00:00
parent beb1b3820c
commit 6ddefd5b4f
1 changed files with 1 additions and 1 deletions

View File

@ -464,7 +464,7 @@ AC_ARG_WITH([sdl-config],
AC_PATH_PROG([SDL_CONFIG], ["sdl-config"], [""], [$PATH])
if test -z "$SDL_CONFIG" ; then
if test -n "$SDL_CONFIG" ; then
SDL_CFLAGS=`$SDL_CONFIG --cflags`
SDL_LIBS=`$SDL_CONFIG --libs`
AC_SUBST(SDL_CFLAGS)