# HG changeset patch # User Sam Lantinga # Date 1069711033 0 # Node ID ce48d14ca5bf591d442298138b1cddf7acbf302d # Parent 06cdd106d61cefc4016c37e1baf6db3570a139c8 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. diff -r 06cdd106d61c -r ce48d14ca5bf configure.in --- a/configure.in Mon Nov 24 19:58:29 2003 +0000 +++ b/configure.in Mon Nov 24 21:57:13 2003 +0000 @@ -2291,7 +2291,7 @@ 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