diff options
author | Javier Viguera <javier.viguera@digi.com> | 2014-11-04 16:12:10 +0100 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2014-11-05 10:45:22 -0200 |
commit | a7522d5d51c810fd68221939d1b51c92a177e10a (patch) | |
tree | e1b2dad58fdfe23fc708ad2223667a31c66767dd | |
parent | 9877a4ffd88e7abf74f53005a8ee6cc5d4b4c000 (diff) | |
download | meta-fsl-arm-a7522d5d51c810fd68221939d1b51c92a177e10a.tar.gz |
gpu-viv-g2d: fix file ownership in packages
Using 'cp -a' to install files in do_install function leaks user/group
attributes from build machine to target packages.
WARNING: log_check: There is a warn message in the logfile
WARNING: log_check: Matched keyword: [warn]
WARNING: log_check: warning: user xxxxx does not exist - using root
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | recipes-graphics/gpu-viv-g2d/gpu-viv-g2d.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-graphics/gpu-viv-g2d/gpu-viv-g2d.inc b/recipes-graphics/gpu-viv-g2d/gpu-viv-g2d.inc index ce0c74f..3f0bdd0 100644 --- a/recipes-graphics/gpu-viv-g2d/gpu-viv-g2d.inc +++ b/recipes-graphics/gpu-viv-g2d/gpu-viv-g2d.inc | |||
@@ -26,8 +26,8 @@ do_install () { | |||
26 | install -d ${D}${includedir} | 26 | install -d ${D}${includedir} |
27 | 27 | ||
28 | cp ${S}/usr/lib/*.so ${D}${libdir} | 28 | cp ${S}/usr/lib/*.so ${D}${libdir} |
29 | cp -axr ${S}/usr/include/* ${D}${includedir} | 29 | cp -Pr ${S}/usr/include/* ${D}${includedir} |
30 | cp -axr ${S}/opt ${D} | 30 | cp -Pr ${S}/opt ${D} |
31 | 31 | ||
32 | find ${D}${libdir} -type f -exec chmod 644 {} \; | 32 | find ${D}${libdir} -type f -exec chmod 644 {} \; |
33 | find ${D}${includedir} -type f -exec chmod 644 {} \; | 33 | find ${D}${includedir} -type f -exec chmod 644 {} \; |