summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data.py
diff options
context:
space:
mode:
authorLianhao Lu <lianhao.lu@intel.com>2011-01-07 14:17:10 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-07 11:14:22 +0000
commit6f454c10bcdd5245ea9297f5334fc56ac06dbdb9 (patch)
tree52770e111ecd43a1194e1315fe2bb2468a93c5b0 /bitbake/lib/bb/data.py
parentdc10e1688e9aa3b6f06b2a37b1d5bdb63443b955 (diff)
downloadpoky-6f454c10bcdd5245ea9297f5334fc56ac06dbdb9.tar.gz
bitbake/data.py: corrected the output for shell syntax.
[BUGID# 645], modify the emit_var() 1. Added "#" to the beginning of each line if the comment contains multiple lines. 2. Added "\" to the end of each line if the shell variable value contains multiple lines. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
Diffstat (limited to 'bitbake/lib/bb/data.py')
-rw-r--r--bitbake/lib/bb/data.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py
index 6ec522aa48..53ce7d62d3 100644
--- a/bitbake/lib/bb/data.py
+++ b/bitbake/lib/bb/data.py
@@ -192,7 +192,8 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
192 return 0 192 return 0
193 193
194 if all: 194 if all:
195 o.write('# %s=%s\n' % (var, oval)) 195 commentVal = re.sub('\n', '\n#', str(oval))
196 o.write('# %s=%s\n' % (var, commentVal))
196 197
197 if (var.find("-") != -1 or var.find(".") != -1 or var.find('{') != -1 or var.find('}') != -1 or var.find('+') != -1) and not all: 198 if (var.find("-") != -1 or var.find(".") != -1 or var.find('{') != -1 or var.find('}') != -1 or var.find('+') != -1) and not all:
198 return 0 199 return 0
@@ -219,6 +220,7 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
219 # if we're going to output this within doublequotes, 220 # if we're going to output this within doublequotes,
220 # to a shell, we need to escape the quotes in the var 221 # to a shell, we need to escape the quotes in the var
221 alter = re.sub('"', '\\"', val.strip()) 222 alter = re.sub('"', '\\"', val.strip())
223 alter = re.sub('\n', ' \\\n', alter)
222 o.write('%s="%s"\n' % (varExpanded, alter)) 224 o.write('%s="%s"\n' % (varExpanded, alter))
223 return 0 225 return 0
224 226