From 4a8fe7fc997c47b0b10315b0e63f89f7d6342acf Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 19 Aug 2010 23:39:19 +0100 Subject: bitbake/runqueue.py: Ensure the flush happens as late as possible to avoid data mixups Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bitbake') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 82d6c84c0b..67f265bc80 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -990,9 +990,6 @@ class RunQueueExecute: return def fork_off_task(self, fn, task, taskname): - sys.stdout.flush() - sys.stderr.flush() - try: the_data = self.cooker.bb_cache.loadDataFull(fn, self.cooker.get_file_appends(fn), self.cooker.configuration.data) @@ -1005,6 +1002,9 @@ class RunQueueExecute: comps = var.split("=") env[comps[0]] = comps[1] + sys.stdout.flush() + sys.stderr.flush() + proc = subprocess.Popen(["bitbake-runtask", fn, taskname, str(self.cooker.configuration.dry_run)], env=env, stdout=subprocess.PIPE, stdin=subprocess.PIPE) pipein = proc.stdout pipeout = proc.stdin -- cgit 1.2.3-korg