mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
man-db: update 2.10.0 -> 2.10.1
(From OE-Core rev: 550be77683805f2853a49cfe79584e9bf925f53d) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2dfaee8203
commit
83a7b93172
@@ -1,4 +1,4 @@
|
||||
From 4b5e00ad020ec327cbc934528d02aa8c4fe3910b Mon Sep 17 00:00:00 2001
|
||||
From 126dfefb5fddf411ad0a1316209e9c1b47abfcd2 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 9 Feb 2022 17:30:16 -0800
|
||||
Subject: [PATCH] man: Move local variable declaration to function scope
|
||||
@@ -10,12 +10,13 @@ code without changing the logic, until its fixed in clang
|
||||
|
||||
Upstream-Status: Inappropriate [Inappropriate: Clang bug]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
|
||||
---
|
||||
src/man.c | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/man.c b/src/man.c
|
||||
index c91abf1..3240eea 100644
|
||||
index f16fae8..333df03 100644
|
||||
--- a/src/man.c
|
||||
+++ b/src/man.c
|
||||
@@ -352,7 +352,7 @@ static void init_html_pager (void)
|
||||
@@ -27,15 +28,12 @@ index c91abf1..3240eea 100644
|
||||
/* Please keep these keys in the same order as in options above. */
|
||||
switch (key) {
|
||||
case 'C':
|
||||
@@ -383,7 +383,7 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state)
|
||||
|
||||
@@ -384,7 +384,7 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state)
|
||||
case OPT_WARNINGS:
|
||||
#ifdef NROFF_WARNINGS
|
||||
- char *s = xstrdup (arg ? arg : default_roff_warnings);
|
||||
+ s = xstrdup (arg ? arg : default_roff_warnings);
|
||||
const char *warning;
|
||||
{
|
||||
- char *s = xstrdup
|
||||
+ s = xstrdup
|
||||
(arg ? arg : default_roff_warnings);
|
||||
const char *warning;
|
||||
|
||||
for (warning = strtok (s, ","); warning;
|
||||
--
|
||||
2.35.1
|
||||
|
||||
|
||||
@@ -9,11 +9,7 @@ SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/man-db/man-db-${PV}.tar.xz \
|
||||
file://99_mandb \
|
||||
file://0001-man-Move-local-variable-declaration-to-function-scop.patch \
|
||||
file://man_db.conf-avoid-multilib-install-file-conflict.patch"
|
||||
SRC_URI[sha256sum] = "0a8629022f7117dc7fc6473c6fdb14913b24b106059bb056abee87dbd6070c79"
|
||||
|
||||
# remove at next version upgrade or when output changes
|
||||
PR = "r1"
|
||||
HASHEQUIV_HASH_VERSION .= ".2"
|
||||
SRC_URI[sha256sum] = "2ffd8f2e80122fe72e60c740c851e6a3e15c9a7921185eb4752c1c672824bed6"
|
||||
|
||||
DEPENDS = "libpipeline gdbm groff-native base-passwd"
|
||||
RDEPENDS:${PN} += "base-passwd"
|
||||
Reference in New Issue
Block a user