summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2002-02-07 00:38:18 +0000
committergstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2002-02-07 00:38:18 +0000
commit2cf79136de9ba99ca5458911e39709a0fe1f6f03 (patch)
tree254fd3bc1b8465c61172f3131c694eb12c45aea9
parent4625f6782a153572e1fdcdd8f80ef1ac2068f3dc (diff)
downloadlibapr-2cf79136de9ba99ca5458911e39709a0fe1f6f03.tar.gz
be a bit more restrictive: look for an exectuable apr-config, rather
than just an existing file. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62924 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--build/find_apr.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/build/find_apr.m4 b/build/find_apr.m4
index 86dabccea..ef73caca8 100644
--- a/build/find_apr.m4
+++ b/build/find_apr.m4
@@ -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