Skip to content

Commit

Permalink
Date: Mon, 21 Apr 2003 03:11:14 -0500
Browse files Browse the repository at this point in the history
From: Jonathan Atkins
Subject: [SDL] configure.in ( if [ ] ) problems

in configure.in, in SDL and SDL_image, perhaps other places...
I'm using the cvs of the libs, and it uses if [ ] in places...
the [ ] is eaten by m4...
please convert the if [ ] statements to: if test

that fixes stuff! :)

--
        LIM
  • Loading branch information
slouken committed Jan 24, 2006
1 parent 8061a5f commit 46dc65f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -66,7 +66,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 46dc65f

Please sign in to comment.