[oe-commits] [openembedded-core] 02/12: man-db: remove '--disable-cache-owner' option

git at git.openembedded.org git at git.openembedded.org
Tue Aug 7 11:13:40 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 7080df4b6bc50440eed600e81f2c6fa76a80623d
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Thu Aug 2 12:52:43 2018 +0800

    man-db: remove '--disable-cache-owner' option
    
    The following error appeared at boot.
    
      systemd-tmpfiles[115]: [/usr/lib/tmpfiles.d/man-db.conf:1] Unknown user '1w'
    
    By default cache owner is enabled and defaults to 'man'. Users could
    supply '--enable-cache-owner=[ARG]' to change the default cache owner.
    Using '--disable-cache-owner' leaves the ownership of system-wide
    cache files unconstrained, and users will allowed to modify them.
    
    We'd better keep the default behavior, just like other distros do.
    
    I can guess that we used '--disable-cache-owner' to bypass the following
    error at do_install.
    
      | chown: invalid user: ‘man:man’
    
    The 'man' user is provided by base-passwd recipe, so add it to DEPENDS.
    
    Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-extended/man-db/man-db_2.8.3.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/man-db/man-db_2.8.3.bb b/meta/recipes-extended/man-db/man-db_2.8.3.bb
index 412e572..a214bd7 100644
--- a/meta/recipes-extended/man-db/man-db_2.8.3.bb
+++ b/meta/recipes-extended/man-db/man-db_2.8.3.bb
@@ -8,14 +8,14 @@ SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/man-db/man-db-${PV}.tar.xz"
 SRC_URI[md5sum] = "6f3055e18fdd1ce5cbbdb30403991ec7"
 SRC_URI[sha256sum] = "5932a1ca366e1ec61a3ece1a3afa0e92f2fdc125b61d236f20cc6ff9d80cc4ac"
 
-DEPENDS = "libpipeline gdbm groff-native"
+DEPENDS = "libpipeline gdbm groff-native base-passwd"
 
 # | /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'
 USE_NLS_libc-musl = "no"
 
 inherit gettext pkgconfig autotools
 
-EXTRA_OECONF = "--with-pager=less --disable-cache-owner"
+EXTRA_OECONF = "--with-pager=less"
 
 do_install_append_libc-musl() {
         rm -f ${D}${libdir}/charset.alias

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list