You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jc...@apache.org on 2017/01/06 19:28:20 UTC

svn commit: r1777695 - /httpd/httpd/branches/trunk-test-integration/configure.in

Author: jchampion
Date: Fri Jan  6 19:28:20 2017
New Revision: 1777695

URL: http://svn.apache.org/viewvc?rev=1777695&view=rev
Log:
--with-test-suite: error instead of warning if Makefile.PL doesn't exist

Modified:
    httpd/httpd/branches/trunk-test-integration/configure.in

Modified: httpd/httpd/branches/trunk-test-integration/configure.in
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/trunk-test-integration/configure.in?rev=1777695&r1=1777694&r2=1777695&view=diff
==============================================================================
--- httpd/httpd/branches/trunk-test-integration/configure.in (original)
+++ httpd/httpd/branches/trunk-test-integration/configure.in Fri Jan  6 19:28:20 2017
@@ -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
     ],