summaryrefslogtreecommitdiffstats
path: root/lib/bb/data_smart.py
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:20 +0100
commita2ca038dd1d0be4e0a0b20ae16a467d5a0075514 (patch)
treefe5626b8cae2009c0bb3758cd3fef5817b052ba6 /lib/bb/data_smart.py
parent72a1ca4a104ccab73d6abcbd44db9c2636a58572 (diff)
downloadopenembedded-core-contrib-a2ca038dd1d0be4e0a0b20ae16a467d5a0075514.tar.gz
data_smart: Clarify what 'computed' means in the data store history context
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/data_smart.py')
-rw-r--r--lib/bb/data_smart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py
index cf8919c64f..d862308355 100644
--- a/lib/bb/data_smart.py
+++ b/lib/bb/data_smart.py
@@ -263,7 +263,7 @@ class VariableHistory(object):
flag = ''
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'])))
if len(history) > 1:
- o.write("# computed:\n")
+ o.write("# pre-expansion value:\n")
o.write('# "%s"\n' % (commentVal))
else:
o.write("#\n# $%s\n# [no history recorded]\n#\n" % var)