diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-18 17:57:01 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-19 16:35:38 +0000 |
commit | 76aa4f49db7d32bbd35703c64470fdfc63f403a4 (patch) | |
tree | b47d47b6f4c021aff3cef5e6b11409a7b57aa4dc /meta/classes/sstate.bbclass | |
parent | 80309a2ba25de219b5339f1af6d5052d6229b676 (diff) | |
download | openembedded-core-76aa4f49db7d32bbd35703c64470fdfc63f403a4.tar.gz openembedded-core-76aa4f49db7d32bbd35703c64470fdfc63f403a4.tar.bz2 openembedded-core-76aa4f49db7d32bbd35703c64470fdfc63f403a4.zip |
sstate: Add packagedata to list of tasks not to recurse
If we "bitbake X -c packagedata" and the packagedata comes from sstate, we
don't need any of the tasks dependencies. This is similar to the
populate_lic case, we only care about the end result.
Therefore short circuit the dependencies so packagedata doesn't pull in
any other dependencies.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r-- | meta/classes/sstate.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 9bef212521..804629199f 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -854,6 +854,10 @@ def setscene_depvalid(task, taskdependees, notneeded, d): if taskdependees[task][1] == "do_populate_lic": return True + # We only need to trigger packagedata through direct dependencies + if taskdependees[task][1] == "do_packagedata": + return True + for dep in taskdependees: bb.debug(2, " considering dependency: %s" % (str(taskdependees[dep]))) if task == dep: |