From 4e20211090d2b193250edaa64f84e355a1c31fe5 Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Wed, 14 Jan 2015 12:46:55 +0000 Subject: 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 Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/buildinfohelper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') 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): # Save build configuration data = self.server.runCommand(["getAllKeysWithFlags", ["doc", "func"]])[0] - self.orm_wrapper.save_build_variables(build_obj, []) + self.orm_wrapper.save_build_variables(build_obj, data) return self.brbe -- cgit v1.2.3-54-g00ecf