summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/sudo/files
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-10-11 11:40:50 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-14 11:48:46 +0100
commit90a03db51bbcdccd57d37548d811d45527b92e6f (patch)
tree77b4a0238eb05eabcf9ba5eedf3cb27af3d321b1 /meta/recipes-extended/sudo/files
parent266d5bdb10e199298b8e003c6f6ddbf240c7a501 (diff)
downloadpoky-90a03db51bbcdccd57d37548d811d45527b92e6f.tar.gz
sudo: update 1.9.7p2 -> 1.9.8p1
Drop specialhandling for mksig items; issue fixed upstream. (From OE-Core rev: c5226a62fe90ff6b24d5063f1ecefd656b3494a3) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/sudo/files')
-rw-r--r--meta/recipes-extended/sudo/files/0001-lib-util-mksigname.c-correctly-include-header-for-ou.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-extended/sudo/files/0001-lib-util-mksigname.c-correctly-include-header-for-ou.patch b/meta/recipes-extended/sudo/files/0001-lib-util-mksigname.c-correctly-include-header-for-ou.patch
new file mode 100644
index 0000000000..e7875c96f7
--- /dev/null
+++ b/meta/recipes-extended/sudo/files/0001-lib-util-mksigname.c-correctly-include-header-for-ou.patch
@@ -0,0 +1,25 @@
1From f993c5c88faacc43971899aae2168ffb3e34dc80 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex@linutronix.de>
3Date: Fri, 24 Sep 2021 13:36:24 +0200
4Subject: [PATCH] lib/util/mksigname.c: correctly include header for out of
5 tree builds
6
7Upstream-Status: Pending
8Signed-off-by: Alexander Kanavin <alex@linutronix.de>
9---
10 lib/util/mksigname.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/lib/util/mksigname.c b/lib/util/mksigname.c
14index de8b1ad..0a69e7e 100644
15--- a/lib/util/mksigname.c
16+++ b/lib/util/mksigname.c
17@@ -36,7 +36,7 @@ main(int argc, char *argv[])
18 {
19 unsigned int i;
20
21-#include "mksigname.h"
22+#include "lib/util/mksigname.h"
23
24 printf("const char *const sudo_sys_signame[] = {\n");
25 for (i = 0; i < nitems(sudo_sys_signame); i++) {