summaryrefslogtreecommitdiffstats
path: root/lib/bb/runqueue.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-10 16:22:54 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-28 14:47:41 +0000
commit32aa49519e4f015e3c21466a7e5dc939f6369851 (patch)
treef50d16f0f16bb7d072b04e55b5423531c4178a02 /lib/bb/runqueue.py
parent0df64810e8d40e7761cfd5059c0617dda31a6641 (diff)
downloadbitbake-32aa49519e4f015e3c21466a7e5dc939f6369851.tar.gz
build.py: Dump out performance data of individual tasks
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/runqueue.py')
-rw-r--r--lib/bb/runqueue.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 0c7dfec2b..1bbe7911c 100644
--- a/lib/bb/runqueue.py
+++ b/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)