blob: dc5b5c88f201ea87d07f51bd7e4f6189316b4dc6 [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001From 443d15b91d4e4979d92405610303797663f31102 Mon Sep 17 00:00:00 2001
2From: echo <fei.geng@windriver.com>
3Date: Tue, 28 Apr 2009 03:11:06 +0000
4Subject: [PATCH] Fix perl install directory to /usr/bin
5
6Upstream-Status: Inappropriate [configuration]
7
8Add back this patch. Without this patch, apxs's shebang will use
9perl under hosttools, which can be too long for shebang, and cause
10error:
11bad interpreter: No such file or directory
12
13Signed-off-by: Changqing Li <changqing.li@windriver.com>
14---
15 configure.in | 5 +----
16 1 file changed, 1 insertion(+), 4 deletions(-)
17
18diff --git a/configure.in b/configure.in
19index 4df3ff3..4eeb609 100644
20--- a/configure.in
21+++ b/configure.in
22@@ -903,10 +903,7 @@ AC_DEFINE_UNQUOTED(SERVER_CONFIG_FILE, "${rel_sysconfdir}/${progname}.conf",
23 AC_DEFINE_UNQUOTED(AP_TYPES_CONFIG_FILE, "${rel_sysconfdir}/mime.types",
24 [Location of the MIME types config file, relative to the Apache root directory])
25
26-perlbin=`$ac_aux_dir/PrintPath perl`
27-if test "x$perlbin" = "x"; then
28- perlbin="/replace/with/path/to/perl/interpreter"
29-fi
30+perlbin='/usr/bin/perl'
31 AC_SUBST(perlbin)
32
33 dnl If we are running on BSD/OS, we need to use the BSD .include syntax.
34--
352.25.1
36