diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2011-06-20 13:24:19 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-23 21:01:49 +0100 |
commit | 007f6e113dcf62282b8a8fb417b963bcc96843e0 (patch) | |
tree | c7f8e397fc96f7324f29c870cae4bb6d4793d98e /meta/recipes-gnome/gnome | |
parent | 2a7f9848d5682836ef1313239f47adf773db2268 (diff) | |
download | openembedded-core-007f6e113dcf62282b8a8fb417b963bcc96843e0.tar.gz openembedded-core-007f6e113dcf62282b8a8fb417b963bcc96843e0.tar.bz2 openembedded-core-007f6e113dcf62282b8a8fb417b963bcc96843e0.tar.xz openembedded-core-007f6e113dcf62282b8a8fb417b963bcc96843e0.zip |
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.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'meta/recipes-gnome/gnome')
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-doc-utils.inc | 2 | ||||
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils.inc b/meta/recipes-gnome/gnome/gnome-doc-utils.inc index b5417535d..32fcf7a9b 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" do_install_append() { mkdir -p ${D}${datadir}/xml/gnome/xslt/ cp -pPr ${S}/xslt/* ${D}${datadir}/xml/gnome/xslt/ + + chown -R root:root ${D} } FILES_${PN} += "${datadir}/xml*" diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb b/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb index e7bf6e9f4..d85697f97 100644 --- a/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb +++ b/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb @@ -1,7 +1,7 @@ require gnome-doc-utils.inc LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=eb723b61539feef013de476e68b5c50a \ file://COPYING.LGPL;md5=a6f89e2100d9b6cdffcea4f398e37343" -PR = "r0" +PR = "r1" SRC_URI += "file://xsltproc_nonet.patch" |