diff options
author | Douglas Royds <douglas.royds@taitradio.com> | 2018-11-22 18:39:42 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-23 23:35:19 +0000 |
commit | 3518cdde5bbb62416a650b7766f649d86b3f4b1e (patch) | |
tree | e02f404912cdf944cc278bf665893f4cff1e306b | |
parent | c0f89c609d97f239b4acd263419a034dd3c5a03b (diff) | |
download | poky-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>
-rw-r--r-- | meta/classes/ptest.bbclass | 1 |
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 | |||
59 | python () { | 59 | python () { |
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"): |