diff options
author | Mattias Hansson <mattias.hansson@axis.com> | 2019-10-15 10:00:15 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-19 23:18:33 +0100 |
commit | 911d784d9c838567dea40b94156e436d70b61c20 (patch) | |
tree | f121e87aef88a41eeb5874f3473684256f7a3c9a | |
parent | 52a625582e616aeb7a60411b58211e9fe1365863 (diff) | |
download | poky-911d784d9c838567dea40b94156e436d70b61c20.tar.gz |
base.bbclass: add dependency on pseudo from do_prepare_recipe_sysroot
do_prepare_recipe_sysroot may perform groupadd, which requires pseudo.
However, do_prepare_recipe_sysroot does not depend on pseudo explicitly,
which sometimes causes a build error when building a recipe that adds
groups.
This issue only occurs when executing do_prepare_recipe_sysroot for a
recipe that adds groups before finishing a task that depends on pseudo
for a recipe that doesn't add groups.
(From OE-Core rev: 427320d7621846d57649af46bf57c88f86cac612)
Signed-off-by: Mattias Hansson <mattihn@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/base.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index d3184ecf7b..1cea3a2213 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -482,6 +482,7 @@ python () { | |||
482 | # If we're building a target package we need to use fakeroot (pseudo) | 482 | # If we're building a target package we need to use fakeroot (pseudo) |
483 | # in order to capture permissions, owners, groups and special files | 483 | # in order to capture permissions, owners, groups and special files |
484 | if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): | 484 | if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d): |
485 | d.appendVarFlag('do_prepare_recipe_sysroot', 'depends', ' virtual/fakeroot-native:do_populate_sysroot') | ||
485 | d.setVarFlag('do_unpack', 'umask', '022') | 486 | d.setVarFlag('do_unpack', 'umask', '022') |
486 | d.setVarFlag('do_configure', 'umask', '022') | 487 | d.setVarFlag('do_configure', 'umask', '022') |
487 | d.setVarFlag('do_compile', 'umask', '022') | 488 | d.setVarFlag('do_compile', 'umask', '022') |