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 701ef1d700..7d2ff818eb 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -697,6 +697,9 @@ class RunQueueData: | |||
697 | seendeps.add(t) | 697 | seendeps.add(t) |
698 | newdeps.add(t) | 698 | newdeps.add(t) |
699 | for i in newdeps: | 699 | for i in newdeps: |
700 | if i not in self.runtaskentries: | ||
701 | # Not all recipes might have the recrdeptask task as a task | ||
702 | continue | ||
700 | task = self.runtaskentries[i].task | 703 | task = self.runtaskentries[i].task |
701 | for n in self.runtaskentries[i].depends: | 704 | for n in self.runtaskentries[i].depends: |
702 | if n not in seendeps: | 705 | if n not in seendeps: |