summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/buildinfohelper.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/buildinfohelper.py')
-rw-r--r--bitbake/lib/bb/ui/buildinfohelper.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py
index 9c4215f9a2..c4ca267783 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -1062,27 +1062,6 @@ class BuildInfoHelper(object):
1062 1062
1063 return recipe_info 1063 return recipe_info
1064 1064
1065 def _get_path_information(self, task_object):
1066 self._ensure_build()
1067
1068 assert isinstance(task_object, Task)
1069 build_stats_format = "{tmpdir}/buildstats/{buildname}/{package}/"
1070 build_stats_path = []
1071
1072 for t in self.internal_state['targets']:
1073 buildname = self.internal_state['build'].build_name
1074 pe, pv = task_object.recipe.version.split(":",1)
1075 if pe:
1076 package = task_object.recipe.name + "-" + pe + "_" + pv
1077 else:
1078 package = task_object.recipe.name + "-" + pv
1079
1080 build_stats_path.append(build_stats_format.format(tmpdir=self.tmp_dir,
1081 buildname=buildname,
1082 package=package))
1083
1084 return build_stats_path
1085
1086 1065
1087 ################################ 1066 ################################
1088 ## external available methods to store information 1067 ## external available methods to store information