summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-02 17:12:43 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-03 08:58:26 +0000
commitfb1fe1a60d93eb05010c7b6a8077eddd4f910e95 (patch)
tree7a3f9af22e3a222545a72380e365520fb0e71339 /meta/recipes-extended
parent3fa6a47aeb24dacf3f3b5cb4d7bad763619baf54 (diff)
downloadpoky-fb1fe1a60d93eb05010c7b6a8077eddd4f910e95.tar.gz
man-db: Fix reproducibility issue
Executing a sequence like: bitbake man-db bitbake man-db -c clean bitbake man-db -c package_write_deb -f results in the ownership of files in the man-db package changing from "man/man" to "6/12". This is due to base-passwd not being installed in the recipe sysroot. Add the missing dependency so even if a recipe "re-packages", the name of the user/group is found and the packages are reproducible. [YOCTO #14172] (From OE-Core rev: 769f8be29a192fd4fa0c4752f851fa3728d71179) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/man-db/man-db_2.9.3.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-extended/man-db/man-db_2.9.3.bb b/meta/recipes-extended/man-db/man-db_2.9.3.bb
index a28f77b750..e8da92bd19 100644
--- a/meta/recipes-extended/man-db/man-db_2.9.3.bb
+++ b/meta/recipes-extended/man-db/man-db_2.9.3.bb
@@ -11,6 +11,7 @@ SRC_URI[sha256sum] = "fa5aa11ab0692daf737e76947f45669225db310b2801a5911bceb7551c
11 11
12DEPENDS = "libpipeline gdbm groff-native base-passwd" 12DEPENDS = "libpipeline gdbm groff-native base-passwd"
13RDEPENDS_${PN} += "base-passwd" 13RDEPENDS_${PN} += "base-passwd"
14PACKAGE_WRITE_DEPS += "base-passwd"
14 15
15# | /usr/src/debug/man-db/2.8.0-r0/man-db-2.8.0/src/whatis.c:939: undefined reference to `_nl_msg_cat_cntr' 16# | /usr/src/debug/man-db/2.8.0-r0/man-db-2.8.0/src/whatis.c:939: undefined reference to `_nl_msg_cat_cntr'
16USE_NLS_libc-musl = "no" 17USE_NLS_libc-musl = "no"