summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-22 16:17:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-25 13:00:18 +0000
commitb1c15cb9077f1d2e19376ff8506359ebbb77d6e3 (patch)
tree7674f0cac5ac9f3a4aea3eee6bfc4461b2ba259d /bitbake
parent6ddb9bf0976169fde7eee16d70a83210aa354416 (diff)
downloadpoky-b1c15cb9077f1d2e19376ff8506359ebbb77d6e3.tar.gz
bitbake: data: Fix output inconsistencies for emit_var
VAL = "" (not shown) VAL = " " (shown as "") VAL = " x" (shown as "x") would all show up rather differently to what would be expected in the bitbake -e output. This fixes things so they appear consistently. The output for running some shell functions may also change slightly but shouldn't change in a way that is likely to cause problems. [YOCTO #5507] (Bitbake rev: fcba5ef0053dc0ef5360e4912609e5d52f5046b0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-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