summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-01-14 12:46:55 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-01-16 08:25:31 +0000
commit4e20211090d2b193250edaa64f84e355a1c31fe5 (patch)
tree72f27626ff9eb52c1a81c4c8128866dfdf1df080 /bitbake
parent2d78912bc62b7452433e3c785327d542449e3011 (diff)
downloadpoky-4e20211090d2b193250edaa64f84e355a1c31fe5.tar.gz
bitbake: toasterui: fix variable data error
A bug slipped in the toaster ui that prevented saving of build configuration despite the data being retrieved from the server. This patch fixes the shaming mistake. [YOCTO #7117] (Bitbake rev: 8118f465b9f87c66b2a741008f69198ac5fea901) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/buildinfohelper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py
index f825b57bea..9e801acc78 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -757,7 +757,7 @@ class BuildInfoHelper(object):
757 757
758 # Save build configuration 758 # Save build configuration
759 data = self.server.runCommand(["getAllKeysWithFlags", ["doc", "func"]])[0] 759 data = self.server.runCommand(["getAllKeysWithFlags", ["doc", "func"]])[0]
760 self.orm_wrapper.save_build_variables(build_obj, []) 760 self.orm_wrapper.save_build_variables(build_obj, data)
761 761
762 return self.brbe 762 return self.brbe
763 763