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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 72c020801b..a320a649e9 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1408,7 +1408,7 @@ class RunQueueExecuteTasks(RunQueueExecute):
1408 bb.event.fire(startevent, self.cfgData) 1408 bb.event.fire(startevent, self.cfgData)
1409 1409
1410 taskdep = self.rqdata.dataCache.task_deps[fn] 1410 taskdep = self.rqdata.dataCache.task_deps[fn]
1411 if 'fakeroot' in taskdep and taskname in taskdep['fakeroot']: 1411 if 'fakeroot' in taskdep and taskname in taskdep['fakeroot'] and not self.cooker.configuration.dry_run:
1412 if not self.rq.fakeworker: 1412 if not self.rq.fakeworker:
1413 self.rq.start_fakeworker(self) 1413 self.rq.start_fakeworker(self)
1414 self.rq.fakeworker.stdin.write("<runtask>" + pickle.dumps((fn, task, taskname, False, self.cooker.collection.get_file_appends(fn))) + "</runtask>") 1414 self.rq.fakeworker.stdin.write("<runtask>" + pickle.dumps((fn, task, taskname, False, self.cooker.collection.get_file_appends(fn))) + "</runtask>")