Changeset - r5479:c805aec006a0
[Not reviewed]
master
0 1 0
truelight - 17 years ago 2007-01-02 20:26:48
truelight@openttd.org
(svn r7763) [Configure] -Fix: all -z tests were protected with "", but of course we forgot one...... :(
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
config.lib
Show inline comments
 
@@ -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"
 

	
0 comments (0 inline, 0 general)