summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSujith H <sujith.h@gmail.com>2016-04-21 20:26:23 +0530
committerOtavio Salvador <otavio@ossystems.com.br>2016-05-07 10:07:46 -0300
commit376de5ee0ecd5d98659a48fa518f6f862a38b47e (patch)
tree915f6ca4ad8cb15d585f669ca7be2ae458a21c5c
parent83dad325b1736c503122f31f1c16a7da73d86820 (diff)
downloadmeta-freescale-376de5ee0ecd5d98659a48fa518f6f862a38b47e.tar.gz
imx-gpu-viv: correct file ownership
This recipe copies binary files with `cp`, including `cp -a`, so the file ownership can end up being the same as the build user. Work around this by chown'ing everything to root:root. This avoids a package_qa failure. Signed-off-by: Sujith H <sujith.h@gmail.com> Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Sujith Haridasan <Sujith_Haridasan@mentor.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-graphics/imx-gpu-viv/imx-gpu-viv.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-graphics/imx-gpu-viv/imx-gpu-viv.inc b/recipes-graphics/imx-gpu-viv/imx-gpu-viv.inc
index ce00724b..f604a374 100644
--- a/recipes-graphics/imx-gpu-viv/imx-gpu-viv.inc
+++ b/recipes-graphics/imx-gpu-viv/imx-gpu-viv.inc
@@ -209,6 +209,8 @@ do_install () {
209 209
210 find ${D}${libdir} -type f -exec chmod 644 {} \; 210 find ${D}${libdir} -type f -exec chmod 644 {} \;
211 find ${D}${includedir} -type f -exec chmod 644 {} \; 211 find ${D}${includedir} -type f -exec chmod 644 {} \;
212
213 chown -R root:root "${D}"
212} 214}
213 215
214ALLOW_EMPTY_${PN} = "1" 216ALLOW_EMPTY_${PN} = "1"