aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2003-12-06 06:15:23 +0000
committerEugene Sandulenko2003-12-06 06:15:23 +0000
commit5973fc01a9a3495f5198c0512bff10432f6c89cc (patch)
treeb8f6e3197432a3f44f9211ea3789a11de74d6814
parent578d2efa773267b52768f8d8fed8020df0a194e3 (diff)
downloadscummvm-rg350-5973fc01a9a3495f5198c0512bff10432f6c89cc.tar.gz
scummvm-rg350-5973fc01a9a3495f5198c0512bff10432f6c89cc.tar.bz2
scummvm-rg350-5973fc01a9a3495f5198c0512bff10432f6c89cc.zip
Fixed potential bug in field separation shell variable. For some reason
tab character got substituted by spaces. svn-id: r11508
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index aa612476f1..cf3db368f4 100755
--- a/configure
+++ b/configure
@@ -85,7 +85,7 @@ printf "Looking for sdl-config... "
sdlconfigs="$_sdlconfig:sdl-config:sdl11-config:sdl12-config"
_sdlconfig=
-IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
+IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
for path_dir in $PATH; do
for sdlconfig in $sdlconfigs; do