diff options
author | Willem Jan Palenstijn | 2006-04-27 19:55:09 +0000 |
---|---|---|
committer | Willem Jan Palenstijn | 2006-04-27 19:55:09 +0000 |
commit | 6330e6585225c40b63818eb3ee608b144704493f (patch) | |
tree | df43a9222caeb702d18a83692816e8ee51affd7f | |
parent | cf13cf3a706dba93b39b3fdc1176b91c569575d1 (diff) | |
download | scummvm-rg350-6330e6585225c40b63818eb3ee608b144704493f.tar.gz scummvm-rg350-6330e6585225c40b63818eb3ee608b144704493f.tar.bz2 scummvm-rg350-6330e6585225c40b63818eb3ee608b144704493f.zip |
return first sdl-config found in PATH
svn-id: r22193
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -163,7 +163,8 @@ find_sdlconfig() if test -x "$path_dir/$sdlconfig" ; then _sdlconfig="$path_dir/$sdlconfig" echo $_sdlconfig - break + # break at first sdl-config found in path + break 2 fi done done |