diff options
| author | Cristiana Voicu <cristiana.voicu@intel.com> | 2013-12-04 15:58:06 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-05 16:27:13 +0000 |
| commit | 5301c59503e0d3fdc0080d80754ec66db40de46c (patch) | |
| tree | bc35323d739a64799b15c2ced31b95c5b922bfca | |
| parent | 2bd4c2be9ffc71d6e7b21ce75c228a70ed00e6d2 (diff) | |
| download | 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>
| -rw-r--r-- | bitbake/lib/bb/ui/buildinfohelper.py | 9 |
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 | ||
| 253 | class BuildInfoHelper(object): | 254 | class 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 |
