]> granicus.if.org Git - apache/commitdiff
--with-test-suite: error instead of warning if Makefile.PL doesn't exist
authorJacob Champion <jchampion@apache.org>
Fri, 6 Jan 2017 19:28:20 +0000 (19:28 +0000)
committerJacob Champion <jchampion@apache.org>
Fri, 6 Jan 2017 19:28:20 +0000 (19:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/trunk-test-integration@1777695 13f79535-47bb-0310-9956-ffa450edef68

configure.in

index db26629e9918dd212b98482bc091ff503ea9e1db..0309d77c437e29fadcbdc6c2a69e83e10ea5fa2a 100644 (file)
@@ -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
     ],