summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/runqueue.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 9b7bb3fe93..15716398f0 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1800,6 +1800,7 @@ class RunQueueExecuteTasks(RunQueueExecute):
1800 except OSError as exc: 1800 except OSError as exc:
1801 logger.critical("Failed to spawn fakeroot worker to run %s: %s" % (task, str(exc))) 1801 logger.critical("Failed to spawn fakeroot worker to run %s: %s" % (task, str(exc)))
1802 self.rq.state = runQueueFailed 1802 self.rq.state = runQueueFailed
1803 self.stats.taskFailed()
1803 return True 1804 return True
1804 self.rq.fakeworker[mc].process.stdin.write(b"<runtask>" + pickle.dumps((taskfn, task, taskname, False, self.cooker.collection.get_file_appends(fn), taskdepdata)) + b"</runtask>") 1805 self.rq.fakeworker[mc].process.stdin.write(b"<runtask>" + pickle.dumps((taskfn, task, taskname, False, self.cooker.collection.get_file_appends(fn), taskdepdata)) + b"</runtask>")
1805 self.rq.fakeworker[mc].process.stdin.flush() 1806 self.rq.fakeworker[mc].process.stdin.flush()