From: Cristiana Voicu Date: Wed, 4 Dec 2013 13:58:06 +0000 (+0200) Subject: toaster: exclude "set in documentation.conf" from variable history X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae0ed55e80b7bd30c775b128b4114b306a50ff69;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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] Signed-off-by: Cristiana Voicu Signed-off-by: Richard Purdie --- diff --git a/lib/bb/ui/buildinfohelper.py b/lib/bb/ui/buildinfohelper.py index 61149fafd79..c99a51109bb 100644 --- a/lib/bb/ui/buildinfohelper.py +++ b/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