From: Jeff Trawick Date: Sat, 31 Mar 2001 11:31:45 +0000 (+0000) Subject: if the perl interpreter is not found in PATH, use X-Git-Tag: 2.0.16~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0879bc771624e170edd5c48197668493ed9d64b1;p=thirdparty%2Fapache%2Fhttpd.git if the perl interpreter is not found in PATH, use "/replace/with/path/to/perl/interpreter" for the path when substituting in split-logfiles et al so that an unlucky user will have a better clue about why these programs won't work git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88622 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index 74e64f211f5..acab1b43958 100644 --- a/configure.in +++ b/configure.in @@ -276,6 +276,9 @@ AC_DEFINE_UNQUOTED(APACHE_MPM_DIR, "$MPM_DIR", [Location of the source for the current MPM]) perlbin=`$ac_aux_dir/PrintPath perl` +if test "x$perlbin" = "x"; then + perlbin="/replace/with/path/to/perl/interpreter" +fi AC_SUBST(perlbin) dnl If we are running on BSD/OS, we need to use the BSD .include syntax.