summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-26 17:35:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-26 17:50:08 +0000
commit60c8b258d8b1b862a4cd674c88b2d93803a460fa (patch)
tree00dacdae28f52aae467fc4a8e9ac2b7f6b4fa8b1
parent95990da935b76085ae26d1a8712c3c181673c9a3 (diff)
downloadpoky-60c8b258d8b1b862a4cd674c88b2d93803a460fa.tar.gz
eglibc-locale: Ensure files have correct ownership
The copy operation leaves the files owned by the person running the build which results in warnings in do_package_write_ipk like: *** Warning: The following files have a UID greater than 99 and incorrect ownership in the packges. This patch addresses this ownership problem. (From OE-Core rev: 90fc8efb88f82f111523e6584e66ae4ff5851426) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/eglibc/eglibc-locale.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-locale.inc b/meta/recipes-core/eglibc/eglibc-locale.inc
index 41cbf48dd3..3d6382d047 100644
--- a/meta/recipes-core/eglibc/eglibc-locale.inc
+++ b/meta/recipes-core/eglibc/eglibc-locale.inc
@@ -76,6 +76,7 @@ do_install () {
76 if [ -e ${LOCALETREESRC}/${datadir}/locale ]; then 76 if [ -e ${LOCALETREESRC}/${datadir}/locale ]; then
77 cp -fpPR ${LOCALETREESRC}/${datadir}/locale ${D}${datadir} 77 cp -fpPR ${LOCALETREESRC}/${datadir}/locale ${D}${datadir}
78 fi 78 fi
79 chown root.root -R ${D}
79 cp -fpPR ${LOCALETREESRC}/SUPPORTED ${WORKDIR} 80 cp -fpPR ${LOCALETREESRC}/SUPPORTED ${WORKDIR}
80} 81}
81 82