Skip to content

Commit

Permalink
Date: Mon, 24 Nov 2003 20:11:31 +0000
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
slouken committed Nov 24, 2003
1 parent 8c9ec1d commit 8e93882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -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
Expand Down

0 comments on commit 8e93882

Please sign in to comment.