summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-09-15 14:43:56 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-09-16 22:15:24 +0100
commit7d80f8e9468253496a7097685aac8f468940a9c5 (patch)
tree0aeabe969f50f2bef532433df8eb9ee087e81ab0 /bitbake
parent14ace86d508a5bdbb8139ce6af09de4d89b44595 (diff)
downloadpoky-7d80f8e9468253496a7097685aac8f468940a9c5.tar.gz
bitbake: data_smart: Clarify what 'computed' means in the data store history context
(Bitbake rev: a2ca038dd1d0be4e0a0b20ae16a467d5a0075514) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/data_smart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index cf8919c64f..d862308355 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -263,7 +263,7 @@ class VariableHistory(object):
263 flag = '' 263 flag = ''
264 o.write("# %s %s:%s%s\n# %s\"%s\"\n" % (event['op'], event['file'], event['line'], display_func, flag, re.sub('\n', '\n# ', event['detail']))) 264 o.write("# %s %s:%s%s\n# %s\"%s\"\n" % (event['op'], event['file'], event['line'], display_func, flag, re.sub('\n', '\n# ', event['detail'])))
265 if len(history) > 1: 265 if len(history) > 1:
266 o.write("# computed:\n") 266 o.write("# pre-expansion value:\n")
267 o.write('# "%s"\n' % (commentVal)) 267 o.write('# "%s"\n' % (commentVal))
268 else: 268 else:
269 o.write("#\n# $%s\n# [no history recorded]\n#\n" % var) 269 o.write("#\n# $%s\n# [no history recorded]\n#\n" % var)