Commit ba97e9b7 authored by Sam Lantinga's avatar Sam Lantinga

Date: Mon, 24 Nov 2003 20:11:31 +0000

From: John Drinkwater <john@nextraweb.com>
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.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40751
parent a12ff596
...@@ -2291,7 +2291,7 @@ case "$target" in ...@@ -2291,7 +2291,7 @@ case "$target" in
ac_default_prefix=/usr/local/cross-tools/i386-mingw32msvc ac_default_prefix=/usr/local/cross-tools/i386-mingw32msvc
else else
# Look for the location of the tools and install there # Look for the location of the tools and install there
if [ "$BUILD_PREFIX" != "" ]; then if test "$BUILD_PREFIX" != ""; then
ac_default_prefix=$BUILD_PREFIX ac_default_prefix=$BUILD_PREFIX
fi fi
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment