summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-02-10 18:09:27 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-02-10 18:09:27 +0000
commite57e4b9f85fc1f5b18df6eeb1e40949a526aa629 (patch)
treee9396763f5a12f60c696c8f7a7d729e7ffa5f1c1 /configure.in
parent938fc1c11facbaf635029ad4342a4810e6ec6268 (diff)
downloadlibapr-e57e4b9f85fc1f5b18df6eeb1e40949a526aa629.tar.gz
Fix the configure scripts, so that we don't try to substitute into
test/Makefile unless we actually have a test directory. The problem is that we don't distribute test directories with our tarballs, so our configure script outputs error messages. This fixes that problem. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61204 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 210923d61..e26e0cbfa 100644
--- a/configure.in
+++ b/configure.in
@@ -904,7 +904,9 @@ do
fi
done
-MAKEFILE3="test/Makefile"
+if test -d ./test; then
+ MAKEFILE3="test/Makefile"
+fi
AC_SUBST(SUBDIRS)
if test -n "$CPPFLAGS"; then