diff options
author | Ross Burton <ross.burton@arm.com> | 2023-10-16 18:03:34 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-10-19 13:26:05 +0100 |
commit | 9cf04cf897c8102424c57fc5c2340f7aa2075f83 (patch) | |
tree | fe43da4cacea1fffd65f2fc582e1bedbc38c4f33 /meta/recipes-extended/man-db | |
parent | 8159c17bdd9a6e35382bb3467cd21a2d2a72a729 (diff) | |
download | poky-9cf04cf897c8102424c57fc5c2340f7aa2075f83.tar.gz |
man-db: add RRECOMMENDS on glibc-utils for iconv
Sometimes man will want to call iconv to convert character encodings, so
recommend glibc-utils on glibc systems for that binary.
(From OE-Core rev: 067c5e1e590fff557581b6bec94dcfd083d56fb1)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/man-db')
-rw-r--r-- | meta/recipes-extended/man-db/man-db_2.11.2.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-extended/man-db/man-db_2.11.2.bb b/meta/recipes-extended/man-db/man-db_2.11.2.bb index 3884a531a6..76e3786b26 100644 --- a/meta/recipes-extended/man-db/man-db_2.11.2.bb +++ b/meta/recipes-extended/man-db/man-db_2.11.2.bb | |||
@@ -52,7 +52,9 @@ FILES:${PN}-dev += "${libdir}/man-db/libman.so ${libdir}/${BPN}/libmandb.so" | |||
52 | 52 | ||
53 | RDEPENDS:${PN} += "groff" | 53 | RDEPENDS:${PN} += "groff" |
54 | RRECOMMENDS:${PN} += "less" | 54 | RRECOMMENDS:${PN} += "less" |
55 | RPROVIDES:${PN} += " man" | 55 | # iconv from glibc-utils can be used to transform encoding |
56 | RRECOMMENDS:${PN}:append:libc-glibc = " glibc-utils" | ||
57 | RPROVIDES:${PN} += "man" | ||
56 | 58 | ||
57 | def compress_pkg(d): | 59 | def compress_pkg(d): |
58 | if bb.utils.contains("INHERIT", "compress_doc", True, False, d): | 60 | if bb.utils.contains("INHERIT", "compress_doc", True, False, d): |