From 6706bad52f9311ea79c534ee90014c3216992999 Mon Sep 17 00:00:00 2001 From: André Draszik Date: Tue, 22 May 2018 13:25:51 +0100 Subject: sstate: use SSTATE_EXCLUDEDEPS_SYSROOT for skipping *-initial recipes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use the newly introduced SSTATE_EXCLUDEDEPS_SYSROOT for specifying the *-initial recipes to be excluded from a recipe sysroot. Signed-off-by: André Draszik Signed-off-by: Richard Purdie --- meta/classes/sstate.bbclass | 3 --- 1 file changed, 3 deletions(-) (limited to 'meta/classes/sstate.bbclass') diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 53f71d4337..f1a289143b 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -978,9 +978,6 @@ def setscene_depvalid(task, taskdependees, notneeded, d, log=None): # base-passwd/shadow-sysroot don't need their dependencies if taskdependees[dep][0].endswith(("base-passwd", "shadow-sysroot")): continue - # Nothing need depend on libc-initial/gcc-cross-initial - if "-initial" in taskdependees[task][0]: - continue # Allow excluding certain recursive dependencies. If a recipe needs it should add a # specific dependency itself, rather than relying on one of its dependees to pull # them in. -- cgit 1.2.3-korg