summaryrefslogtreecommitdiffstats
path: root/meta/classes/ptest.bbclass
diff options
context:
space:
mode:
authorDouglas Royds <douglas.royds@taitradio.com>2018-11-22 18:39:42 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-23 23:35:19 +0000
commit3518cdde5bbb62416a650b7766f649d86b3f4b1e (patch)
treee02f404912cdf944cc278bf665893f4cff1e306b /meta/classes/ptest.bbclass
parentc0f89c609d97f239b4acd263419a034dd3c5a03b (diff)
downloadpoky-3518cdde5bbb62416a650b7766f649d86b3f4b1e.tar.gz
ptest: Reproducibility: Take control of umask
The build host umask was leaking into the thing-ptest packages at do_install_ptest() time. (From OE-Core rev: 891343e8ba6490ca3e1876c892269b611ddc7877) Signed-off-by: Douglas Royds <douglas.royds@taitradio.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/ptest.bbclass')
-rw-r--r--meta/classes/ptest.bbclass1
1 files changed, 1 insertions, 0 deletions
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
59python () { 59python () {
60 if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): 60 if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
61 d.setVarFlag('do_install_ptest_base', 'fakeroot', '1') 61 d.setVarFlag('do_install_ptest_base', 'fakeroot', '1')
62 d.setVarFlag('do_install_ptest_base', 'umask', '022')
62 63
63 # Remove all '*ptest_base' tasks when ptest is not enabled 64 # Remove all '*ptest_base' tasks when ptest is not enabled
64 if not(d.getVar('PTEST_ENABLED') == "1"): 65 if not(d.getVar('PTEST_ENABLED') == "1"):