From 8e93882d87fa619b4f8d60cc19cf3cd2e614decd Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 24 Nov 2003 21:57:13 +0000 Subject: [PATCH] Date: Mon, 24 Nov 2003 20:11:31 +0000 From: John Drinkwater Subject: SDL configure.in patch On my cygwin compile environment, I get a script error with configure. $ ./configure --enable-debug=no -q; appending configuration tag "CXX" to libtool appending configuration tag "F77" to libtool ./configure: line 28135: : command not found *snip the rest* The supplied patch fixes the problem, just a minor oversight of some [ ] & t\ est. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 19500837e..03350a4ea 100644 --- a/configure.in +++ b/configure.in @@ -2291,7 +2291,7 @@ case "$target" in ac_default_prefix=/usr/local/cross-tools/i386-mingw32msvc else # Look for the location of the tools and install there - if [ "$BUILD_PREFIX" != "" ]; then + if test "$BUILD_PREFIX" != ""; then ac_default_prefix=$BUILD_PREFIX fi fi