From cfb082961a6c9ac3d65738031c4071210529cd07 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 10 Jun 2011 16:22:54 +0000 Subject: bitbake: build.py: Dump out performance data of individual tasks (Bitbake rev: 32aa49519e4f015e3c21466a7e5dc939f6369851) Signed-off-by: Richard Purdie Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bitbake/lib/bb/runqueue.py') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 0c7dfec2b6..1bbe7911cd 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1149,7 +1149,8 @@ class RunQueueExecute: os._exit(1) try: if not self.cooker.configuration.dry_run: - ret = bb.build.exec_task(fn, taskname, the_data) + profile = self.cooker.configuration.profile + ret = bb.build.exec_task(fn, taskname, the_data, profile) os._exit(ret) except: os._exit(1) -- cgit v1.2.3-54-g00ecf