summaryrefslogtreecommitdiffstats
path: root/lib/bb/data.py
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-24 12:26:06 +0000
commitfcba5ef0053dc0ef5360e4912609e5d52f5046b0 (patch)
tree01dd5a321122ad5dfc1688c8a952cd1f5838cfae /lib/bb/data.py
parent40e06dc459d9c0b5d42d65b2d2c846196fd36b1f (diff)
downloadbitbake-contrib-fcba5ef0053dc0ef5360e4912609e5d52f5046b0.tar.gz
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] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/data.py')
-rw-r--r--lib/bb/data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/data.py b/lib/bb/data.py
index 349fcfe87..bdd1e79e2 100644
--- a/lib/bb/data.py
+++ b/lib/bb/data.py
@@ -214,7 +214,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
o.write('unset %s\n' % varExpanded)
return 0
- if not val:
+ if val is None:
return 0
val = str(val)
@@ -229,7 +229,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
# if we're going to output this within doublequotes,
# to a shell, we need to escape the quotes in the var
- alter = re.sub('"', '\\"', val.strip())
+ alter = re.sub('"', '\\"', val)
alter = re.sub('\n', ' \\\n', alter)
o.write('%s="%s"\n' % (varExpanded, alter))
return 0