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-04-23 12:02:10 -0300
commitc124ec958d8d1eea44a6a4fe0c3cc7b9772150b9 (patch)
tree5b0794eee542bbc1ea91ae146e2847068027f4f2
parent4a873b4bdc15b307870659b1e3915bef15e0d833 (diff)
downloadmeta-fsl-arm-c124ec958d8d1eea44a6a4fe0c3cc7b9772150b9.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 3ec6ce2..cb69924 100644
--- a/recipes-graphics/imx-gpu-viv/imx-gpu-viv.inc
+++ b/recipes-graphics/imx-gpu-viv/imx-gpu-viv.inc
@@ -219,6 +219,8 @@ do_install () {
219 219
220 find ${D}${libdir} -type f -exec chmod 644 {} \; 220 find ${D}${libdir} -type f -exec chmod 644 {} \;
221 find ${D}${includedir} -type f -exec chmod 644 {} \; 221 find ${D}${includedir} -type f -exec chmod 644 {} \;
222
223 chown -R root:root "${D}"
222} 224}
223 225
224ALLOW_EMPTY_${PN} = "1" 226ALLOW_EMPTY_${PN} = "1"