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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 6ca693d21c..4ea4970127 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1551,7 +1551,8 @@ class RunQueueExecuteTasks(RunQueueExecute):
1551 bb.event.fire(startevent, self.cfgData) 1551 bb.event.fire(startevent, self.cfgData)
1552 self.runq_running[task] = 1 1552 self.runq_running[task] = 1
1553 self.stats.taskActive() 1553 self.stats.taskActive()
1554 bb.build.make_stamp(taskname, self.rqdata.dataCache, fn) 1554 if not self.cooker.configuration.dry_run:
1555 bb.build.make_stamp(taskname, self.rqdata.dataCache, fn)
1555 self.task_complete(task) 1556 self.task_complete(task)
1556 return True 1557 return True
1557 else: 1558 else: