sstate: Add back packagedata on packagedata dependencies

(From OE-Core rev: 654f0eec426e882e50f688f6d097d992e34e5b40)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2016-01-28 16:34:00 +00:00
parent 346b225b71
commit 2f1bcc1915
1 changed files with 4 additions and 0 deletions

View File

@ -855,7 +855,11 @@ def setscene_depvalid(task, taskdependees, notneeded, d):
return True
# We only need to trigger packagedata through direct dependencies
# but need to preserve packagedata on packagedata links
if taskdependees[task][1] == "do_packagedata":
for dep in taskdependees:
if taskdependees[dep][1] == "do_packagedata":
return False
return True
for dep in taskdependees: