diff options
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 110865132d..5a45943e3a 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1782,6 +1782,9 @@ class RunQueue: | |||
1782 | if match is None: | 1782 | if match is None: |
1783 | bb.fatal("Can't find a task we're supposed to have written out? (hash: %s tid: %s)?" % (h, tid)) | 1783 | bb.fatal("Can't find a task we're supposed to have written out? (hash: %s tid: %s)?" % (h, tid)) |
1784 | matches = {k : v for k, v in iter(matches.items()) if h not in k} | 1784 | matches = {k : v for k, v in iter(matches.items()) if h not in k} |
1785 | matches_local = {k : v for k, v in iter(matches.items()) if h not in k and not v['sstate']} | ||
1786 | if matches_local: | ||
1787 | matches = matches_local | ||
1785 | if matches: | 1788 | if matches: |
1786 | latestmatch = matches[sorted(matches.keys(), key=lambda h: matches[h]['time'])[-1]]['path'] | 1789 | latestmatch = matches[sorted(matches.keys(), key=lambda h: matches[h]['time'])[-1]]['path'] |
1787 | prevh = __find_sha256__.search(latestmatch).group(0) | 1790 | prevh = __find_sha256__.search(latestmatch).group(0) |