From: Douglas Royds Date: Thu, 22 Nov 2018 05:39:42 +0000 (+1300) Subject: ptest: Reproducibility: Take control of umask X-Git-Tag: uninative-2.4~1041 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=891343e8ba6490ca3e1876c892269b611ddc7877;p=openembedded-core.git ptest: Reproducibility: Take control of umask The build host umask was leaking into the thing-ptest packages at do_install_ptest() time. Signed-off-by: Douglas Royds Signed-off-by: Richard Purdie --- diff --git a/meta/classes/ptest.bbclass b/meta/classes/ptest.bbclass index c19f65b9bb..9d8a79854a 100644 --- a/meta/classes/ptest.bbclass +++ b/meta/classes/ptest.bbclass @@ -59,6 +59,7 @@ addtask install_ptest_base after do_install before do_package do_populate_sy python () { if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): d.setVarFlag('do_install_ptest_base', 'fakeroot', '1') + d.setVarFlag('do_install_ptest_base', 'umask', '022') # Remove all '*ptest_base' tasks when ptest is not enabled if not(d.getVar('PTEST_ENABLED') == "1"):