]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
if the perl interpreter is not found in PATH, use
authorJeff Trawick <trawick@apache.org>
Sat, 31 Mar 2001 11:31:45 +0000 (11:31 +0000)
committerJeff Trawick <trawick@apache.org>
Sat, 31 Mar 2001 11:31:45 +0000 (11:31 +0000)
"/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

index 74e64f211f5178a95f49c14e904dfd96ac849e87..acab1b43958145f456773708f2f00b5f3e4f8e47 100644 (file)
@@ -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.