summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/ui/buildinfohelper.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py
index 61149fafd7..c99a51109b 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -245,10 +245,11 @@ class ORMWrapper(object):
245 variable_value = value, 245 variable_value = value,
246 description = desc) 246 description = desc)
247 for vh in vardump[k]['history']: 247 for vh in vardump[k]['history']:
248 VariableHistory.objects.create( variable = variable_obj, 248 if not 'documentation.conf' in vh['file']:
249 file_name = vh['file'], 249 VariableHistory.objects.create( variable = variable_obj,
250 line_number = vh['line'], 250 file_name = vh['file'],
251 operation = vh['op']) 251 line_number = vh['line'],
252 operation = vh['op'])
252 253
253class BuildInfoHelper(object): 254class BuildInfoHelper(object):
254 """ This class gathers the build information from the server and sends it 255 """ This class gathers the build information from the server and sends it