From 60c8b258d8b1b862a4cd674c88b2d93803a460fa Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 26 Mar 2013 17:35:11 +0000 Subject: 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 --- meta/recipes-core/eglibc/eglibc-locale.inc | 1 + 1 file changed, 1 insertion(+) 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 () { if [ -e ${LOCALETREESRC}/${datadir}/locale ]; then cp -fpPR ${LOCALETREESRC}/${datadir}/locale ${D}${datadir} fi + chown root.root -R ${D} cp -fpPR ${LOCALETREESRC}/SUPPORTED ${WORKDIR} } -- cgit v1.2.3-54-g00ecf