diff options
author | Eugene Sandulenko | 2003-12-06 06:15:23 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2003-12-06 06:15:23 +0000 |
commit | 5973fc01a9a3495f5198c0512bff10432f6c89cc (patch) | |
tree | b8f6e3197432a3f44f9211ea3789a11de74d6814 /configure | |
parent | 578d2efa773267b52768f8d8fed8020df0a194e3 (diff) | |
download | scummvm-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
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |