summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-10-07 14:55:07 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-11 05:38:34 +0100
commit34d4ef7289d72d151ad0acdccab8b99c8c31221e (patch)
tree5385eaf374a1c38d372f6bd6a6315fcba7b68cb6 /lib
parentbe2d04c1831608922f90da03cb26d7fd5c863a47 (diff)
downloadbitbake-34d4ef7289d72d151ad0acdccab8b99c8c31221e.tar.gz
toaster: buildinfohelper associate build data with built_recipe
Make sure we associate build data with the built recipe rather than toaster's configuration copy of the recipe. Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/ui/buildinfohelper.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bb/ui/buildinfohelper.py b/lib/bb/ui/buildinfohelper.py
index 9fdde29e1..fc59c57d0 100644
--- a/lib/bb/ui/buildinfohelper.py
+++ b/lib/bb/ui/buildinfohelper.py
@@ -286,6 +286,7 @@ class ORMWrapper(object):
update_recipe_obj(recipe)
+ built_recipe = None
# Create a copy of the recipe for historical puposes and update it
for built_layer in self.layer_version_built:
if built_layer.layer == recipe_information['layer_version'].layer:
@@ -301,7 +302,7 @@ class ORMWrapper(object):
if created and must_exist:
raise NotExisting("Recipe object created when expected to exist", recipe_information)
- return recipe
+ return built_recipe
def get_update_layer_version_object(self, build_obj, layer_obj, layer_version_information):
if isinstance(layer_obj, Layer_Version):