summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/strace/strace
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2022-01-31 17:40:12 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-03 09:05:14 +0000
commit2d4589316c34d9a64e1885c51e90e621ad895611 (patch)
tree63a98cfc40d5d77cbb9e035fe90c11639397a4d9 /meta/recipes-devtools/strace/strace
parent9e54790c6e3a1e6239700031e8d7d7e1d0c6407e (diff)
downloadpoky-2d4589316c34d9a64e1885c51e90e621ad895611.tar.gz
strace: remove obsolete musl-on-MIPS patch
This patch was added as musl doesn't define SIGEMT on MIPS, but this was a mistake in musl and has been fixed in cabc369, available in musl 1.2.1 onwards (August 2020). (From OE-Core rev: 3ce2fd9f3002178ba2425c7912bf8b83a4150c9a) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/strace/strace')
-rw-r--r--meta/recipes-devtools/strace/strace/mips-SIGEMT.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-devtools/strace/strace/mips-SIGEMT.patch b/meta/recipes-devtools/strace/strace/mips-SIGEMT.patch
deleted file mode 100644
index e86da9707c..0000000000
--- a/meta/recipes-devtools/strace/strace/mips-SIGEMT.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From 794648d84672bbda30a920a05540b56cd155ed9d Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sun, 7 Aug 2016 23:47:57 -0700
4Subject: [PATCH] strace: Fix build with mips/mips64 on musl
5
6SIGEMT is not defined everywhere e.g musl does
7not define it. Therefore check it being defined
8before using it.
9
10Fixes errors e.g.
11../../strace-4.13/tests/signal2name.c:45:7: error: 'SIGEMT' undeclared (first use in this function)
12
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14Upstream-Status: Pending
15
16---
17 tests/signal2name.c | 2 ++
18 1 file changed, 2 insertions(+)
19
20diff --git a/tests/signal2name.c b/tests/signal2name.c
21index 1d8e7c5..6722aa1 100644
22--- a/tests/signal2name.c
23+++ b/tests/signal2name.c
24@@ -49,7 +49,9 @@ signal2name(int sig)
25 CASE(SIGEMT);
26 CASE(SIGLOST);
27 #elif defined MIPS
28+#ifdef SIGEMT
29 CASE(SIGEMT);
30+#endif
31 CASE(SIGIOT);
32 CASE(SIGPWR);
33 #else