mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 00:49:33 +02:00
data: fewer newlines for (un)export
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). (Bitbake rev: ba060160fdf1278a273fb2b77d36b8c681807ecf) Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
committed by
Richard Purdie
parent
9ed8e9f371
commit
83f0b79f43
@@ -201,7 +201,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
|
|||||||
|
|
||||||
if unexport:
|
if unexport:
|
||||||
o.write('unset %s\n' % varExpanded)
|
o.write('unset %s\n' % varExpanded)
|
||||||
return 1
|
return 0
|
||||||
|
|
||||||
if not val:
|
if not val:
|
||||||
return 0
|
return 0
|
||||||
@@ -220,7 +220,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
|
|||||||
# to a shell, we need to escape the quotes in the var
|
# to a shell, we need to escape the quotes in the var
|
||||||
alter = re.sub('"', '\\"', val.strip())
|
alter = re.sub('"', '\\"', val.strip())
|
||||||
o.write('%s="%s"\n' % (varExpanded, alter))
|
o.write('%s="%s"\n' % (varExpanded, alter))
|
||||||
return 1
|
return 0
|
||||||
|
|
||||||
def emit_env(o=sys.__stdout__, d = init(), all=False):
|
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."""
|
"""Emits all items in the data store in a format such that it can be sourced by a shell."""
|
||||||
|
|||||||
Reference in New Issue
Block a user