diff options
author | truelight <truelight@openttd.org> | 2007-01-02 20:26:48 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-01-02 20:26:48 +0000 |
commit | 3792865a487fa452c93dd3a59a149c5ee5aa9a60 (patch) | |
tree | f51e2c42fecf034b8ce101e26ea27c4734a6064d | |
parent | 7437ae1a08f86cf94a49ebb28e91031eadd318a5 (diff) | |
download | openttd-3792865a487fa452c93dd3a59a149c5ee5aa9a60.tar.xz |
(svn r7763) [Configure] -Fix: all -z tests were protected with "", but of course we forgot one...... :(
-rw-r--r-- | config.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.lib b/config.lib index ac8af3f24..5afba7de0 100644 --- a/config.lib +++ b/config.lib @@ -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" |