From 226c47ff001a881c991c33674449a495132edd58 Mon Sep 17 00:00:00 2001 From: Valentin Popa Date: Tue, 25 Mar 2014 14:06:08 +0200 Subject: piglit: ship files with correct permissions Adress the warning | warning: group pulse does not exist - using root Piglit files from framework/ generated_tests/ tests/ and templates/ belong to xuser/pulse. Don't keep the permissions while shipping the files, they should be root/root. [YOCTO #6028] Signed-off-by: Valentin Popa Signed-off-by: Richard Purdie --- meta/recipes-graphics/piglit/piglit_git.bb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'meta') diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb index 8616764fc5..7417cd5364 100644 --- a/meta/recipes-graphics/piglit/piglit_git.bb +++ b/meta/recipes-graphics/piglit/piglit_git.bb @@ -33,11 +33,11 @@ do_install() { install -d ${D}${libdir}/piglit/bin install -m 755 ${S}/bin/* ${D}${libdir}/piglit/bin - cp -a lib/ ${D}${libdir}/piglit/ - cp -a framework/ ${D}${libdir}/piglit/ - cp -a generated_tests/ ${D}${libdir}/piglit/ - cp -a tests/ ${D}${libdir}/piglit/ - cp -a templates/ ${D}${libdir}/piglit/ + cp -Pr lib/ ${D}${libdir}/piglit/ + cp -Pr framework/ ${D}${libdir}/piglit/ + cp -Pr generated_tests/ ${D}${libdir}/piglit/ + cp -Pr tests/ ${D}${libdir}/piglit/ + cp -Pr templates/ ${D}${libdir}/piglit/ sed -i -e 's|sys.path.append(.*)|sys.path.append("${libdir}/piglit")|' ${D}${bindir}/piglit-*.py sed -i -e 's|^templatedir = .*$|templatedir = "${libdir}/piglit/templates"|' ${D}${bindir}/piglit-summary-html.py -- cgit 1.2.3-korg