diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-10-03 00:12:52 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-10-08 13:27:24 +0100 |
commit | be28dbff39ece8385bfcf4e444bec2b05b389084 (patch) | |
tree | 2b3a90ae438d1f4dbcd03bc249f4d96ea1a52dfc | |
parent | f691dad4367be156f26019f762711db5bd1791c2 (diff) | |
download | poky-be28dbff39ece8385bfcf4e444bec2b05b389084.tar.gz |
pseudo: Fix envp bug and add posix_spawn wrapper
Fix pseudo with python 3.13 by adding a wrapper for posix_spawn and
fixing a NULL pointer dereference in envp handling it uncovered. This
fixes issues on Fedora 41.
(From OE-Core rev: d80e20d70d170397f9827c5a5fc75ad1f2e8cd94)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/pseudo/pseudo_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb index 7d8f71f65d..87c62e0678 100644 --- a/meta/recipes-devtools/pseudo/pseudo_git.bb +++ b/meta/recipes-devtools/pseudo/pseudo_git.bb | |||
@@ -14,7 +14,7 @@ SRC_URI:append:class-nativesdk = " \ | |||
14 | file://older-glibc-symbols.patch" | 14 | file://older-glibc-symbols.patch" |
15 | SRC_URI[prebuilt.sha256sum] = "ed9f456856e9d86359f169f46a70ad7be4190d6040282b84c8d97b99072485aa" | 15 | SRC_URI[prebuilt.sha256sum] = "ed9f456856e9d86359f169f46a70ad7be4190d6040282b84c8d97b99072485aa" |
16 | 16 | ||
17 | SRCREV = "374089f2ed83da4d0d4e58df067142ff99c7eb12" | 17 | SRCREV = "28dcefb809ce95db997811b5662f0b893b9923e0" |
18 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
19 | PV = "1.9.0+git" | 19 | PV = "1.9.0+git" |
20 | 20 | ||