From: Ross Burton <[email protected]> This recipe currently uses DIRFILES to work around the fact that both cups and gutenprint ship /etc/cups but with different ownership.
Instead of having mismatching ownership, we can simply match the ownership in gutenprint. Signed-off-by: Ross Burton <[email protected]> --- meta-oe/recipes-printing/gutenprint/gutenprint_git.bb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/meta-oe/recipes-printing/gutenprint/gutenprint_git.bb b/meta-oe/recipes-printing/gutenprint/gutenprint_git.bb index abdd3d5e40..17522590d9 100644 --- a/meta-oe/recipes-printing/gutenprint/gutenprint_git.bb +++ b/meta-oe/recipes-printing/gutenprint/gutenprint_git.bb @@ -51,6 +51,8 @@ do_configure() { do_install:append() { # This file contains build paths and isn't very useful, remove it rm -f ${D}${libdir}/gutenprint/*/config.summary + # Match ownership to cups + chgrp lp ${D}${sysconfdir}/cups } do_compile:class-native() { @@ -65,8 +67,8 @@ do_install:class-native() { FILES:${PN} += "${datadir}/cups/*" RDEPENDS:${PN} = "perl" -# Install in /etc/cups when RPM needs DIRFILES to not conflict -# https://stackoverflow.com/questions/44762430/why-do-i-get-etc-cups-conflicts-between-attempted-installs-in-yocto -DIRFILES = "1" - BBCLASSEXTEND = "native" + +# Pull in base-passwd for the lp user +DEPENDS:append:class-target = "base-passwd" +PACKAGE_WRITE_DEPS += "base-passwd" -- 2.34.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#102741): https://lists.openembedded.org/g/openembedded-devel/message/102741 Mute This Topic: https://lists.openembedded.org/mt/99091767/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
