diff options
author | 2013-11-14 10:53:00 +0000 | |
---|---|---|
committer | 2013-11-15 12:17:29 +0000 | |
commit | 3390674247b426f107be8cb94d45fc7e8cb969ec (patch) | |
tree | f9fc048bc3fb449dc0d574f54ccaa10de7e945d4 /bitbake/lib/bb/ui | |
parent | 0e6bbf8181abd68e327e15f07a982a9a126be8db (diff) | |
download | poky-3390674247b426f107be8cb94d45fc7e8cb969ec.tar.gz poky-3390674247b426f107be8cb94d45fc7e8cb969ec.tar.bz2 poky-3390674247b426f107be8cb94d45fc7e8cb969ec.zip |
bitbake: toaster: fix path to buildstats file
The buildstats file path changes based on the
optional PE variable that may be defined for a
recipe.
The toasterui simply ignored the PE value, and
as such it didn't correctly reach buildstats files
for some of the tasks.
This patch fixes the issue.
[YOCTO #5073]
(Bitbake rev: 97b8ab88edc7c8dfb26b4cf305701ec96e52cc4f)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui')
-rw-r--r-- | bitbake/lib/bb/ui/buildinfohelper.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py index 6b6c4f3d9e..7eac734183 100644 --- a/bitbake/lib/bb/ui/buildinfohelper.py +++ b/bitbake/lib/bb/ui/buildinfohelper.py @@ -386,7 +386,11 @@ class BuildInfoHelper(object): target = t.target machine = self.internal_state['build'].machine buildname = self.internal_state['build'].build_name - package = task_object.recipe.name + "-" + task_object.recipe.version.strip(":") + pe, pv = task_object.recipe.version.split(":",1) + if len(pe) > 0: + package = task_object.recipe.name + "-" + pe + "_" + pv + else: + package = task_object.recipe.name + "-" + pv build_stats_path.append(build_stats_format.format(tmpdir=self.tmp_dir, target=target, machine=machine, buildname=buildname, |