summaryrefslogtreecommitdiffstats
path: root/meta/classes/sstate.bbclass
diff options
context:
space:
mode:
authorAndré Draszik <andre.draszik@jci.com>2018-05-22 13:25:52 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-08-16 09:49:39 +0100
commit6e362580a667de3a5ba98e877e561ecd5cea7137 (patch)
tree4873d97db93dc93145db21cf6aaf442dfc82d9ed /meta/classes/sstate.bbclass
parente02176b5e66721c8d872c93d2108e98d142c376b (diff)
downloadpoky-6e362580a667de3a5ba98e877e561ecd5cea7137.tar.gz
sstate: use SSTATE_EXCLUDEDEPS_SYSROOT for skipping base-passwd|shadow-sysroot recipes
Use the newly introduced SSTATE_EXCLUDEDEPS_SYSROOT for specifying the base-passwd|shadow-sysroot recipes to be excluded from a recipe sysroot. (From OE-Core rev: 68e502e9063a88532fe0154f152ba408f0091900) Signed-off-by: André Draszik <andre.draszik@jci.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r--meta/classes/sstate.bbclass3
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index f1a289143b..6f2fa583f2 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -975,9 +975,6 @@ def setscene_depvalid(task, taskdependees, notneeded, d, log=None):
975 975
976 # Consider sysroot depending on sysroot tasks 976 # Consider sysroot depending on sysroot tasks
977 if taskdependees[task][1] == 'do_populate_sysroot' and taskdependees[dep][1] == 'do_populate_sysroot': 977 if taskdependees[task][1] == 'do_populate_sysroot' and taskdependees[dep][1] == 'do_populate_sysroot':
978 # base-passwd/shadow-sysroot don't need their dependencies
979 if taskdependees[dep][0].endswith(("base-passwd", "shadow-sysroot")):
980 continue
981 # Allow excluding certain recursive dependencies. If a recipe needs it should add a 978 # Allow excluding certain recursive dependencies. If a recipe needs it should add a
982 # specific dependency itself, rather than relying on one of its dependees to pull 979 # specific dependency itself, rather than relying on one of its dependees to pull
983 # them in. 980 # them in.