From: Ross Burton Date: Mon, 26 Jun 2017 10:08:18 +0000 (+0100) Subject: cups: don't change permissions of /var/run/cups/certs in do_package X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~20900 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4030274eceaf0b95cac5c54c55c3f91ef45fa9b4;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git cups: don't change permissions of /var/run/cups/certs in do_package This directory is deleted by do_install, so luckily the lack of error checking meant this didn't break. Signed-off-by: Ross Burton --- diff --git a/meta/recipes-extended/cups/cups.inc b/meta/recipes-extended/cups/cups.inc index c3fa45941c2..38d90b5ea9d 100644 --- a/meta/recipes-extended/cups/cups.inc +++ b/meta/recipes-extended/cups/cups.inc @@ -79,13 +79,6 @@ do_install () { fi } -python do_package_append() { - import subprocess - # Change permissions back the way they were, they probably had a reason... - workdir = d.getVar('WORKDIR') - subprocess.call('chmod 0511 %s/install/cups/var/run/cups/certs' % workdir, shell=True) -} - PACKAGES =+ "${PN}-lib ${PN}-libimage" RDEPENDS_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'procps', '', d)}"