mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-09 06:20:27 +00:00
ChangeLog: https://downloads.apache.org/httpd/CHANGES_2.4.53 Security fixes: CVE-2022-23943 CVE-2022-22721 CVE-2022-22720 CVE-2022-22719 Refresh patches. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
From 443d15b91d4e4979d92405610303797663f31102 Mon Sep 17 00:00:00 2001
|
|
From: echo <fei.geng@windriver.com>
|
|
Date: Tue, 28 Apr 2009 03:11:06 +0000
|
|
Subject: [PATCH] Fix perl install directory to /usr/bin
|
|
|
|
Upstream-Status: Inappropriate [configuration]
|
|
|
|
Add back this patch. Without this patch, apxs's shebang will use
|
|
perl under hosttools, which can be too long for shebang, and cause
|
|
error:
|
|
bad interpreter: No such file or directory
|
|
|
|
Signed-off-by: Changqing Li <changqing.li@windriver.com>
|
|
---
|
|
configure.in | 5 +----
|
|
1 file changed, 1 insertion(+), 4 deletions(-)
|
|
|
|
diff --git a/configure.in b/configure.in
|
|
index 4df3ff3..4eeb609 100644
|
|
--- a/configure.in
|
|
+++ b/configure.in
|
|
@@ -903,10 +903,7 @@ AC_DEFINE_UNQUOTED(SERVER_CONFIG_FILE, "${rel_sysconfdir}/${progname}.conf",
|
|
AC_DEFINE_UNQUOTED(AP_TYPES_CONFIG_FILE, "${rel_sysconfdir}/mime.types",
|
|
[Location of the MIME types config file, relative to the Apache root directory])
|
|
|
|
-perlbin=`$ac_aux_dir/PrintPath perl`
|
|
-if test "x$perlbin" = "x"; then
|
|
- perlbin="/replace/with/path/to/perl/interpreter"
|
|
-fi
|
|
+perlbin='/usr/bin/perl'
|
|
AC_SUBST(perlbin)
|
|
|
|
dnl If we are running on BSD/OS, we need to use the BSD .include syntax.
|
|
--
|
|
2.25.1
|
|
|