summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index fd8912ab40..27b5171a6e 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -157,7 +157,7 @@ class CommandsSync:
157 Set the value of variable in configuration.data 157 Set the value of variable in configuration.data
158 """ 158 """
159 varname = params[0] 159 varname = params[0]
160 value = params[1] 160 value = str(params[1])
161 command.cooker.configuration.data.setVar(varname, value) 161 command.cooker.configuration.data.setVar(varname, value)
162 162
163 def initCooker(self, command, params): 163 def initCooker(self, command, params):