diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2011-06-20 13:18:19 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-23 21:01:48 +0100 |
commit | 7ebe9412e66bb56b51bd6e757f3ea2acd839f667 (patch) | |
tree | 4de57161ce23c82214e183c315da57a096c818ae /meta | |
parent | 8996d4dfd302dc966e39d752761f0f3adbc75683 (diff) | |
download | openembedded-core-7ebe9412e66bb56b51bd6e757f3ea2acd839f667.tar.gz openembedded-core-7ebe9412e66bb56b51bd6e757f3ea2acd839f667.tar.bz2 openembedded-core-7ebe9412e66bb56b51bd6e757f3ea2acd839f667.zip |
ghostscript: Fix owner/group of /etc/cups
/etc/cups is owned by root:lp from the cups package, the associated
ghostscript was creating the /etc/cups directory as root:root. /etc/cups
is the authoritative source.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/ghostscript/ghostscript_9.02.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-extended/ghostscript/ghostscript_9.02.bb b/meta/recipes-extended/ghostscript/ghostscript_9.02.bb index 3cb5485d24..02038ea632 100644 --- a/meta/recipes-extended/ghostscript/ghostscript_9.02.bb +++ b/meta/recipes-extended/ghostscript/ghostscript_9.02.bb @@ -15,7 +15,7 @@ SECTION = "console/utils" LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://LICENSE;md5=d151214b3131251dfc9d858593acbd24" -PR = "r2" +PR = "r3" DEPENDS = "${PN}-native tiff jpeg fontconfig cups" DEPENDS_virtclass-native = "" @@ -57,6 +57,8 @@ do_install_append () { mkdir -p ${D}${datadir}/ghostscript/${PV}/ cp -r Resource ${D}${datadir}/ghostscript/${PV}/ cp -r iccprofiles ${D}${datadir}/ghostscript/${PV}/ + + chown -R root:lp ${D}${sysconfdir}/cups } python do_patch_virtclass-native () { |