summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index d0a23da73c..31978d49ba 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -776,7 +776,7 @@ class RunQueue:
776 bb.msg.fatal(bb.msg.domain.RunQueue, "check_stamps fatal internal error") 776 bb.msg.fatal(bb.msg.domain.RunQueue, "check_stamps fatal internal error")
777 return current 777 return current
778 778
779 def check_stamp_task(self, task): 779 def check_stamp_task(self, task, taskname = None):
780 780
781 if self.stamppolicy == "perfile": 781 if self.stamppolicy == "perfile":
782 fulldeptree = False 782 fulldeptree = False
@@ -787,7 +787,8 @@ class RunQueue:
787 stampwhitelist = self.stampfnwhitelist 787 stampwhitelist = self.stampfnwhitelist
788 788
789 fn = self.taskData.fn_index[self.runq_fnid[task]] 789 fn = self.taskData.fn_index[self.runq_fnid[task]]
790 taskname = self.runq_task[task] 790 if taskname is None:
791 taskname = self.runq_task[task]
791 stampfile = "%s.%s" % (self.dataCache.stamp[fn], taskname) 792 stampfile = "%s.%s" % (self.dataCache.stamp[fn], taskname)
792 # If the stamp is missing its not current 793 # If the stamp is missing its not current
793 if not os.access(stampfile, os.F_OK): 794 if not os.access(stampfile, os.F_OK):
@@ -928,12 +929,12 @@ class RunQueue:
928 while True: 929 while True:
929 task = None 930 task = None
930 if self.stats.active < self.number_tasks: 931 if self.stats.active < self.number_tasks:
931 task = next(self.sched) 932 task = self.sched.next()
932 if task is not None: 933 if task is not None:
933 fn = self.taskData.fn_index[self.runq_fnid[task]] 934 fn = self.taskData.fn_index[self.runq_fnid[task]]
934 935
935 taskname = self.runq_task[task] 936 taskname = self.runq_task[task]
936 if self.check_stamp_task(task): 937 if self.check_stamp_task(task, taskname):
937 bb.msg.debug(2, bb.msg.domain.RunQueue, "Stamp current task %s (%s)" % (task, self.get_user_idstring(task))) 938 bb.msg.debug(2, bb.msg.domain.RunQueue, "Stamp current task %s (%s)" % (task, self.get_user_idstring(task)))
938 self.runq_running[task] = 1 939 self.runq_running[task] = 1
939 self.runq_buildable[task] = 1 940 self.runq_buildable[task] = 1