From a26f1fb5cdee534a92e7238d26cf614f672d2245 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Sat, 5 Jun 2010 21:10:21 +0000 Subject: [PATCH] For included APR, apr-config is not in the srcdir but instead in the builddir. That only matters for VPATH builds, ie. when you build outside of the source tree. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@951769 13f79535-47bb-0310-9956-ffa450edef68 --- configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index dc487c1f8a..eca5a08fc7 100644 --- a/configure.in +++ b/configure.in @@ -93,9 +93,9 @@ if test "$apr_found" = "reconfig"; then dnl We have to find apr-N-config when we reconfigure APR. for majorver in 1 2; do - test_apr_config="$srcdir/srclib/apr/apr-${majorver}-config" - if test -f $test_apr_config; then - apr_config=$test_apr_config + test_apr_config="./srclib/apr/apr-${majorver}-config" + if test -f "$test_apr_config"; then + apr_config="$test_apr_config" fi done fi -- 2.50.1