summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2004-02-05 17:37:40 +0000
committerjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2004-02-05 17:37:40 +0000
commit647d26215652a92ead729a8ab7371b7c01d388c5 (patch)
treedac691db60dcf34b361bacee7ef48878479540d1 /configure.in
parent3116502f9bd95534cabaabca54746df9372f235f (diff)
downloadlibapr-util-647d26215652a92ead729a8ab7371b7c01d388c5.tar.gz
Apply Joe Orton's APR patch to APR-util as well to allow VPATH builds.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58982 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 2f659615..821011ee 100644
--- a/configure.in
+++ b/configure.in
@@ -166,15 +166,15 @@ case "$host_alias" in
# Check whether they've installed GNU make
if make --version > /dev/null 2>&1; then
INCLUDE_RULES="include $abs_builddir/build/rules.mk"
- INCLUDE_OUTPUTS="include build-outputs.mk"
+ INCLUDE_OUTPUTS="include $abs_srcdir/build-outputs.mk"
else
INCLUDE_RULES=".include \"$abs_builddir/build/rules.mk\""
- INCLUDE_OUTPUTS=".include \"build-outputs.mk\""
+ INCLUDE_OUTPUTS=".include \"$abs_srcdir/build-outputs.mk\""
fi
;;
*)
INCLUDE_RULES="include $abs_builddir/build/rules.mk"
- INCLUDE_OUTPUTS="include build-outputs.mk"
+ INCLUDE_OUTPUTS="include $abs_srcdir/build-outputs.mk"
;;
esac
AC_SUBST(INCLUDE_RULES)