From a39f335f59ec4c2fc5442b2312afd9a4fa3a690d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 28 Nov 2010 12:07:57 +0000 Subject: bitbake/runqueue.py: Fix stamp handling for noexec tasks This means the noexec messages are only shown once as the stamp files are now correctly created. Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/runqueue.py') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 85ecafcb7f..d5c95659e9 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1223,7 +1223,7 @@ class RunQueueExecuteTasks(RunQueueExecute): self.rqdata.get_user_idstring(task))) self.runq_running[task] = 1 self.stats.taskActive() - bb.build.make_stamp(task, self.rqdata.dataCache, fn) + bb.build.make_stamp(taskname, self.rqdata.dataCache, fn) self.task_complete(task) return True -- cgit 1.2.3-korg