diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-28 12:07:57 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-28 12:10:17 +0000 |
commit | a39f335f59ec4c2fc5442b2312afd9a4fa3a690d (patch) | |
tree | 37590f564635e87994d3fe1da60a765be44148d4 /bitbake | |
parent | 32d1125525361a4f7340c425213d7f2899ec1757 (diff) | |
download | poky-a39f335f59ec4c2fc5442b2312afd9a4fa3a690d.tar.gz |
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 <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
1223 | self.rqdata.get_user_idstring(task))) | 1223 | self.rqdata.get_user_idstring(task))) |
1224 | self.runq_running[task] = 1 | 1224 | self.runq_running[task] = 1 |
1225 | self.stats.taskActive() | 1225 | self.stats.taskActive() |
1226 | bb.build.make_stamp(task, self.rqdata.dataCache, fn) | 1226 | bb.build.make_stamp(taskname, self.rqdata.dataCache, fn) |
1227 | self.task_complete(task) | 1227 | self.task_complete(task) |
1228 | return True | 1228 | return True |
1229 | 1229 | ||