[bitbake-devel] [PATCH 4/4] toasterui: fix variable data error
Alex DAMIAN
alexandru.damian at intel.com
Wed Jan 14 12:46:55 UTC 2015
From: Alexandru DAMIAN <alexandru.damian at intel.com>
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]
Signed-off-by: Alexandru DAMIAN <alexandru.damian at intel.com>
---
lib/bb/ui/buildinfohelper.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/bb/ui/buildinfohelper.py b/lib/bb/ui/buildinfohelper.py
index f825b57..9e801ac 100644
--- a/lib/bb/ui/buildinfohelper.py
+++ b/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
--
1.9.1
More information about the bitbake-devel
mailing list