diff options
author | Jacob Champion <jchampion@apache.org> | 2017-01-06 20:28:20 +0100 |
---|---|---|
committer | Jacob Champion <jchampion@apache.org> | 2017-01-06 20:28:20 +0100 |
commit | 6ed6d50f9810c10977323413b4d149a12e9beb12 (patch) | |
tree | 2fe1cceb2c7e62d84942097a4fd195c0c6050cb9 /configure.in | |
parent | check: enable all (non-MPM) modules when testing (diff) | |
download | apache2-6ed6d50f9810c10977323413b4d149a12e9beb12.tar.xz apache2-6ed6d50f9810c10977323413b4d149a12e9beb12.zip |
--with-test-suite: error instead of warning if Makefile.PL doesn't exist
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/trunk-test-integration@1777695 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index db26629e99..0309d77c43 100644 --- a/configure.in +++ b/configure.in @@ -892,7 +892,7 @@ AC_ARG_WITH([test-suite], if test "x$withval" = "xyes"; then AC_MSG_ERROR([option --with-test-suite requires a directory]); else - test -f "$withval/Makefile.PL" || AC_MSG_WARN([--with-test-suite directory $withval does not appear to contain the expected Makefile.PL]) + test -f "$withval/Makefile.PL" || AC_MSG_ERROR([--with-test-suite directory $withval does not contain the expected Makefile.PL]) TEST_SUITE_LOCATION="$withval" fi ], |