Previously we emitted two newlines for export and unexport. One newline for export and unexport is enough (and makes the scripts look better and a tad smaller).
Signed-off-by: Bernhard Reutner-Fischer <[email protected]> --- lib/bb/data.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bb/data.py b/lib/bb/data.py index 636983e..8ecf5bd 100644 --- a/lib/bb/data.py +++ b/lib/bb/data.py @@ -198,7 +198,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False): if unexport: o.write('unset %s\n' % varExpanded) - return 1 + return 0 if not val: return 0 @@ -217,7 +217,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False): # to a shell, we need to escape the quotes in the var alter = re.sub('"', '\\"', val.strip()) o.write('%s="%s"\n' % (varExpanded, alter)) - return 1 + return 0 def emit_env(o=sys.__stdout__, d = init(), all=False): """Emits all items in the data store in a format such that it can be sourced by a shell.""" -- 1.7.2.3 _______________________________________________ Bitbake-dev mailing list [email protected] https://lists.berlios.de/mailman/listinfo/bitbake-dev
