diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-10 16:22:54 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-28 14:49:05 +0000 |
commit | cfb082961a6c9ac3d65738031c4071210529cd07 (patch) | |
tree | c0f821e0927d61bdf4321906a2317dbfa8e04392 /bitbake/lib/bb/runqueue.py | |
parent | dd335b09089c14016642a51b812500556e8f453c (diff) | |
download | poky-cfb082961a6c9ac3d65738031c4071210529cd07.tar.gz |
bitbake: build.py: Dump out performance data of individual tasks
(Bitbake rev: 32aa49519e4f015e3c21466a7e5dc939f6369851)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 3 |
1 files changed, 2 insertions, 1 deletions
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: | |||
1149 | os._exit(1) | 1149 | os._exit(1) |
1150 | try: | 1150 | try: |
1151 | if not self.cooker.configuration.dry_run: | 1151 | if not self.cooker.configuration.dry_run: |
1152 | ret = bb.build.exec_task(fn, taskname, the_data) | 1152 | profile = self.cooker.configuration.profile |
1153 | ret = bb.build.exec_task(fn, taskname, the_data, profile) | ||
1153 | os._exit(ret) | 1154 | os._exit(ret) |
1154 | except: | 1155 | except: |
1155 | os._exit(1) | 1156 | os._exit(1) |