Skip to content

Commit

Permalink
be a bit more restrictive: look for an exectuable apr-config, rather
Browse files Browse the repository at this point in the history
than just an existing file.


git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62924 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
gstein committed Feb 7, 2002
1 parent 060c9e1 commit 74bd483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/find_apr.m4
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ AC_DEFUN(APR_FIND_APR, [
if test -x "$withval/bin/apr-config"; then
apr_found="yes"
apr_config="$withval/bin/apr-config"
elif test -f "$withval/apr-config"; then
elif test -x "$withval/apr-config"; then
apr_found="yes"
apr_config="$withval/apr-config"
elif test -x "$withval" && $withval --help > /dev/null 2>&1 ; then
Expand Down

0 comments on commit 74bd483

Please sign in to comment.