diff options
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 0f99e5ab8e..2b71eed06e 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -793,7 +793,9 @@ class RunQueueData: | |||
793 | if self.cooker.configuration.invalidate_stamp: | 793 | if self.cooker.configuration.invalidate_stamp: |
794 | for (fn, target) in self.target_pairs: | 794 | for (fn, target) in self.target_pairs: |
795 | for st in self.cooker.configuration.invalidate_stamp.split(','): | 795 | for st in self.cooker.configuration.invalidate_stamp.split(','): |
796 | invalidate_task(fn, "do_%s" % st, True) | 796 | if not st.startswith("do_"): |
797 | st = "do_%s" % st | ||
798 | invalidate_task(fn, st, True) | ||
797 | 799 | ||
798 | # Iterate over the task list and call into the siggen code | 800 | # Iterate over the task list and call into the siggen code |
799 | dealtwith = set() | 801 | dealtwith = set() |