summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data.py
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-01-03 20:57:20 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2011-01-04 15:00:11 +0000
commit83f0b79f43f2df35ac6fa9ba11973491e6a52b65 (patch)
tree9c4b43dbcdb5b83bf42623a759882da25d4b6aa8 /bitbake/lib/bb/data.py
parent9ed8e9f37136ee170433effad0ebd4130dc97007 (diff)
downloadpoky-83f0b79f43f2df35ac6fa9ba11973491e6a52b65.tar.gz
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>
Diffstat (limited to 'bitbake/lib/bb/data.py')
-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 b3abf318af..6ec522aa48 100644
--- a/bitbake/lib/bb/data.py
+++ b/bitbake/lib/bb/data.py
@@ -201,7 +201,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
201 201
202 if unexport: 202 if unexport:
203 o.write('unset %s\n' % varExpanded) 203 o.write('unset %s\n' % varExpanded)
204 return 1 204 return 0
205 205
206 if not val: 206 if not val:
207 return 0 207 return 0
@@ -220,7 +220,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
220 # to a shell, we need to escape the quotes in the var 220 # to a shell, we need to escape the quotes in the var
221 alter = re.sub('"', '\\"', val.strip()) 221 alter = re.sub('"', '\\"', val.strip())
222 o.write('%s="%s"\n' % (varExpanded, alter)) 222 o.write('%s="%s"\n' % (varExpanded, alter))
223 return 1 223 return 0
224 224
225def emit_env(o=sys.__stdout__, d = init(), all=False): 225def emit_env(o=sys.__stdout__, d = init(), all=False):
226 """Emits all items in the data store in a format such that it can be sourced by a shell.""" 226 """Emits all items in the data store in a format such that it can be sourced by a shell."""