summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-httpd/apache2/apache2/0008-Fix-perl-install-directory-to-usr-bin.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-webserver/recipes-httpd/apache2/apache2/0008-Fix-perl-install-directory-to-usr-bin.patch')
-rw-r--r--meta-webserver/recipes-httpd/apache2/apache2/0008-Fix-perl-install-directory-to-usr-bin.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-webserver/recipes-httpd/apache2/apache2/0008-Fix-perl-install-directory-to-usr-bin.patch b/meta-webserver/recipes-httpd/apache2/apache2/0008-Fix-perl-install-directory-to-usr-bin.patch
new file mode 100644
index 0000000000..dc5b5c88f2
--- /dev/null
+++ b/meta-webserver/recipes-httpd/apache2/apache2/0008-Fix-perl-install-directory-to-usr-bin.patch
@@ -0,0 +1,36 @@
1From 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