mirror of https://github.com/OpenTTD/OpenTTD
(svn r7763) [Configure] -Fix: all -z tests were protected with "", but of course we forgot one...... :(
parent
7437ae1a08
commit
3792865a48
|
@ -1558,7 +1558,7 @@ detect_sdl() {
|
|||
log 2 " returned $version"
|
||||
log 2 " exit code $ret"
|
||||
|
||||
if [ -z $version ] || [ "$ret" != "0" ]
|
||||
if [ -z "$version" ] || [ "$ret" != "0" ]
|
||||
then
|
||||
log 1 "checking SDL... not found"
|
||||
|
||||
|
|
Loading…
Reference in New Issue