From: Valentin Popa Date: Tue, 25 Mar 2014 12:06:08 +0000 (+0200) Subject: piglit: ship files with correct permissions X-Git-Tag: 2015-4~3249 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=226c47ff001a881c991c33674449a495132edd58;p=openembedded-core.git 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 --- 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