summaryrefslogtreecommitdiffstats
path: root/recipes-graphics
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-04-23 11:47:37 -0300
commit305b89e0511dc5fd1e0527006f5079add978433d (patch)
treec3fbc11d41f5d1536543458fd0efdfeca98a332b /recipes-graphics
parentfc12316b2bf4191c30a687602e03af17f05d4ebe (diff)
downloadmeta-fsl-arm-305b89e0511dc5fd1e0527006f5079add978433d.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>
Diffstat (limited to 'recipes-graphics')
-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 ce00724..f604a37 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"