From: Richard Purdie Date: Sun, 28 Nov 2010 12:07:57 +0000 (+0000) Subject: bitbake/runqueue.py: Fix stamp handling for noexec tasks X-Git-Tag: 2011-1~3803 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a39f335f59ec4c2fc5442b2312afd9a4fa3a690d;p=openembedded-core.git 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 --- 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