summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/gnome/gnome-doc-utils.inc
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2011-06-20 13:24:19 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-23 21:08:03 +0100
commit3233f4ba7c4015c0124bf0818a15c1db051bf8a9 (patch)
treeb7fa40b27ee45febbef83f1bdbe58ac2f42ec530 /meta/recipes-gnome/gnome/gnome-doc-utils.inc
parentab8f2025ee887a24027c59446fd51bb9b2cfb119 (diff)
downloadpoky-3233f4ba7c4015c0124bf0818a15c1db051bf8a9.tar.gz
gnome-doc-utils: Fix the owner/group on select files
All of the files in ${datadir}/xml/gnome/xslt were being given the uid/gid of the build user. Fix this for the target case, avoid it in the native. (From OE-Core rev: 007f6e113dcf62282b8a8fb417b963bcc96843e0) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gnome/gnome-doc-utils.inc')
-rw-r--r--meta/recipes-gnome/gnome/gnome-doc-utils.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils.inc b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
index b5417535dd..32fcf7a9b2 100644
--- a/meta/recipes-gnome/gnome/gnome-doc-utils.inc
+++ b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
@@ -9,6 +9,8 @@ EXTRA_OECONF = "--disable-scrollkeeper"
9do_install_append() { 9do_install_append() {
10 mkdir -p ${D}${datadir}/xml/gnome/xslt/ 10 mkdir -p ${D}${datadir}/xml/gnome/xslt/
11 cp -pPr ${S}/xslt/* ${D}${datadir}/xml/gnome/xslt/ 11 cp -pPr ${S}/xslt/* ${D}${datadir}/xml/gnome/xslt/
12
13 chown -R root:root ${D}
12} 14}
13 15
14FILES_${PN} += "${datadir}/xml*" 16FILES_${PN} += "${datadir}/xml*"