summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-12-04 15:58:06 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-05 16:27:13 +0000
commit5301c59503e0d3fdc0080d80754ec66db40de46c (patch)
treebc35323d739a64799b15c2ced31b95c5b922bfca /bitbake/lib
parent2bd4c2be9ffc71d6e7b21ce75c228a70ed00e6d2 (diff)
downloadast2050-yocto-poky-5301c59503e0d3fdc0080d80754ec66db40de46c.zip
ast2050-yocto-poky-5301c59503e0d3fdc0080d80754ec66db40de46c.tar.gz
bitbake: toaster: exclude "set in documentation.conf" from variable history
That has no impact on the builds themselves, so we should just remove that line from the variable history. [YOCTO #5561] (Bitbake rev: ae0ed55e80b7bd30c775b128b4114b306a50ff69) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-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 61149fa..c99a511 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -245,10 +245,11 @@ class ORMWrapper(object):
variable_value = value,
description = desc)
for vh in vardump[k]['history']:
- VariableHistory.objects.create( variable = variable_obj,
- file_name = vh['file'],
- line_number = vh['line'],
- operation = vh['op'])
+ if not 'documentation.conf' in vh['file']:
+ VariableHistory.objects.create( variable = variable_obj,
+ file_name = vh['file'],
+ line_number = vh['line'],
+ operation = vh['op'])
class BuildInfoHelper(object):
""" This class gathers the build information from the server and sends it
OpenPOWER on IntegriCloud