diff options
author | Jordi Vilalta Prat | 2008-03-23 11:46:55 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2008-03-23 11:46:55 +0000 |
commit | 3236e308a497ad9a2d4f833648b209231f3facce (patch) | |
tree | e6affe9e28a2f7e10b14cf6ee6fa42e39db9cdc8 /configure | |
parent | b81993f894e195d8fcef54cb0f77486d485861bd (diff) | |
download | scummvm-rg350-3236e308a497ad9a2d4f833648b209231f3facce.tar.gz scummvm-rg350-3236e308a497ad9a2d4f833648b209231f3facce.tar.bz2 scummvm-rg350-3236e308a497ad9a2d4f833648b209231f3facce.zip |
Patch #1923546: fix checking sdlconfig on OS/2 (supposing the files in path are executable)
svn-id: r31227
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -235,7 +235,7 @@ find_sdlconfig() #reset separator to parse sdlconfigs IFS=":" for sdlconfig in $sdlconfigs; do - if test -x "$path_dir/$sdlconfig" ; then + if test -f "$path_dir/$sdlconfig" ; then _sdlconfig="$path_dir/$sdlconfig" echo $_sdlconfig # Save the prefix |