summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py
index 349fcfe878..bdd1e79e24 100644
--- a/bitbake/lib/bb/data.py
+++ b/bitbake/lib/bb/data.py
@@ -214,7 +214,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
214 o.write('unset %s\n' % varExpanded) 214 o.write('unset %s\n' % varExpanded)
215 return 0 215 return 0
216 216
217 if not val: 217 if val is None:
218 return 0 218 return 0
219 219
220 val = str(val) 220 val = str(val)
@@ -229,7 +229,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
229 229
230 # if we're going to output this within doublequotes, 230 # if we're going to output this within doublequotes,
231 # to a shell, we need to escape the quotes in the var 231 # to a shell, we need to escape the quotes in the var
232 alter = re.sub('"', '\\"', val.strip()) 232 alter = re.sub('"', '\\"', val)
233 alter = re.sub('\n', ' \\\n', alter) 233 alter = re.sub('\n', ' \\\n', alter)
234 o.write('%s="%s"\n' % (varExpanded, alter)) 234 o.write('%s="%s"\n' % (varExpanded, alter))
235 return 0 235 return 0