From 0879bc771624e170edd5c48197668493ed9d64b1 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sat, 31 Mar 2001 11:31:45 +0000 Subject: [PATCH] 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 --- configure.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.in b/configure.in index 74e64f211f..acab1b4395 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. -- 2.40.0