diff options
-rw-r--r-- | src/pkgconf-funcs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkgconf-funcs.sh b/src/pkgconf-funcs.sh index d06b68b..fd144c8 100644 --- a/src/pkgconf-funcs.sh +++ b/src/pkgconf-funcs.sh @@ -108,7 +108,7 @@ find_file_in_path () { local IFS=":" # On Windows it should be ";"??? for d in $p; do - if [ -e $d/$f ]; then + if [ -r $d/$f ]; then RESULT="$d/$f" return 0 fi |