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:08:02 +0100 |
commit | f9c2ff4ef0a059944df378ce23a9a28556cc59da (patch) | |
tree | 9bd402964b8f15a311140d31b1e6bd04c5b2c1b3 /meta/recipes-extended | |
parent | 324913cd22bd7d263555c1f1628d86cd0b5e6d0f (diff) | |
download | poky-f9c2ff4ef0a059944df378ce23a9a28556cc59da.tar.gz |
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.
(From OE-Core rev: 7ebe9412e66bb56b51bd6e757f3ea2acd839f667)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-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" | |||
15 | LICENSE = "GPLv3" | 15 | LICENSE = "GPLv3" |
16 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d151214b3131251dfc9d858593acbd24" | 16 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d151214b3131251dfc9d858593acbd24" |
17 | 17 | ||
18 | PR = "r2" | 18 | PR = "r3" |
19 | 19 | ||
20 | DEPENDS = "${PN}-native tiff jpeg fontconfig cups" | 20 | DEPENDS = "${PN}-native tiff jpeg fontconfig cups" |
21 | DEPENDS_virtclass-native = "" | 21 | DEPENDS_virtclass-native = "" |
@@ -57,6 +57,8 @@ do_install_append () { | |||
57 | mkdir -p ${D}${datadir}/ghostscript/${PV}/ | 57 | mkdir -p ${D}${datadir}/ghostscript/${PV}/ |
58 | cp -r Resource ${D}${datadir}/ghostscript/${PV}/ | 58 | cp -r Resource ${D}${datadir}/ghostscript/${PV}/ |
59 | cp -r iccprofiles ${D}${datadir}/ghostscript/${PV}/ | 59 | cp -r iccprofiles ${D}${datadir}/ghostscript/${PV}/ |
60 | |||
61 | chown -R root:lp ${D}${sysconfdir}/cups | ||
60 | } | 62 | } |
61 | 63 | ||
62 | python do_patch_virtclass-native () { | 64 | python do_patch_virtclass-native () { |