bitbake: cooker.py: fix loginfo op being set to an invalid value

loginfo "op" was being set to invalid values in saveConfigurationVar it was
working because set is a python global but append is not. This replaces both
the "op" with strings and removes the crash when calling appendConfigurationVar

(Bitbake rev: 2a8e847de85546d43600a561f9c63aa36bd69222)

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Brendan Le Foll 2014-11-12 11:42:39 +00:00 committed by Richard Purdie
parent c5d19aae55
commit edaeb89408
1 changed files with 2 additions and 2 deletions

View File

@ -240,7 +240,7 @@ class BBCooker:
f.write(total)
#add to history
loginfo = {"op":append, "file":default_file, "line":total.count("\n")}
loginfo = {"op":"append", "file":default_file, "line":total.count("\n")}
self.data.appendVar(var, val, **loginfo)
def saveConfigurationVar(self, var, val, default_file, op):
@ -309,7 +309,7 @@ class BBCooker:
f.write(total)
#add to history
loginfo = {"op":set, "file":default_file, "line":total.count("\n")}
loginfo = {"op":"set", "file":default_file, "line":total.count("\n")}
self.data.setVar(var, val, **loginfo)
def removeConfigurationVar(self, var):