diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-17 15:21:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-25 21:53:34 +0100 |
commit | 4cc61c81f7558f5fdbc8cc83a5c2be85545a8181 (patch) | |
tree | f104f53010367826e78a3388c93fbdaf903bb92e /meta/recipes-devtools/pseudo/pseudo_git.bb | |
parent | c3e72164e7a0c51de04a9295e5f50c2e233965f7 (diff) | |
download | poky-4cc61c81f7558f5fdbc8cc83a5c2be85545a8181.tar.gz |
pseudo: Fix to work with glibc 2.34 systems
The merge of libdl into libc in glibc 2.34 causes problems for pseudo. Add a fix
that works around this issue.
(From OE-Core rev: dd3e46a043c81cd4d81731a0f691868d3c059742)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/pseudo/pseudo_git.bb')
-rw-r--r-- | meta/recipes-devtools/pseudo/pseudo_git.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb index dacaef1a66..79b7123e38 100644 --- a/meta/recipes-devtools/pseudo/pseudo_git.bb +++ b/meta/recipes-devtools/pseudo/pseudo_git.bb | |||
@@ -5,6 +5,10 @@ SRC_URI = "git://git.yoctoproject.org/pseudo;branch=oe-core \ | |||
5 | file://fallback-passwd \ | 5 | file://fallback-passwd \ |
6 | file://fallback-group \ | 6 | file://fallback-group \ |
7 | " | 7 | " |
8 | SRC_URI:append:class-native = " \ | ||
9 | http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=git/prebuilt;name=prebuilt \ | ||
10 | file://older-glibc-symbols.patch" | ||
11 | SRC_URI[prebuilt.sha256sum] = "ed9f456856e9d86359f169f46a70ad7be4190d6040282b84c8d97b99072485aa" | ||
8 | 12 | ||
9 | SRCREV = "b988b0a6b8afd8d459bc9a2528e834f63a3d59b2" | 13 | SRCREV = "b988b0a6b8afd8d459bc9a2528e834f63a3d59b2" |
10 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |