mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
Various security and bug fixes; adds support for the JIT compiler. * Fixed bug #81026 (PHP-FPM oob R/W in root process leading to privilege escalation) (CVE-2021-21703). https://www.php.net/ChangeLog-8.php#8.0.0 Signed-off-by: Claude Bing <cbing@cybernetics.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From f22958b4c1348eec3bb4c0f2cbe2d22676e0ad23 Mon Sep 17 00:00:00 2001
|
|
From: Claude Bing <cbing@cybernetics.com>
|
|
Date: Tue, 9 Nov 2021 13:04:29 -0500
|
|
Subject: [PATCH 05/11] pear: fix Makefile.frag for Yocto
|
|
|
|
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
|
|
|
update patch to 8.0.12
|
|
Signed-off-by: Claude Bing <cbing@cybernetics.com>
|
|
---
|
|
pear/Makefile.frag | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/pear/Makefile.frag b/pear/Makefile.frag
|
|
index 9408757a3a..69072f39e0 100644
|
|
--- a/pear/Makefile.frag
|
|
+++ b/pear/Makefile.frag
|
|
@@ -10,7 +10,7 @@ PEAR_SUFFIX = -ds a$(program_suffix)
|
|
PEAR_INSTALLER_URL = https://pear.php.net/install-pear-nozlib.phar
|
|
|
|
install-pear-installer: $(SAPI_CLI_PATH)
|
|
- @$(top_builddir)/sapi/cli/php $(PEAR_INSTALL_FLAGS) pear/install-pear-nozlib.phar -d "$(peardir)" -b "$(bindir)" ${PEAR_PREFIX} ${PEAR_SUFFIX}
|
|
+ @$(PHP_NATIVE_DIR)/php $(PEAR_INSTALL_FLAGS) $(builddir)/install-pear-nozlib.phar -d "$(peardir)" -b "$(bindir)" ${PEAR_PREFIX} ${PEAR_SUFFIX}
|
|
|
|
install-pear:
|
|
@echo "Installing PEAR environment: $(INSTALL_ROOT)$(peardir)/"
|
|
--
|
|
2.25.1
|
|
|