summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-04-24 18:34:15 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-12 09:13:38 +0100
commit8da99b16bca3a6be5dfb705d0cc4e44d0f2ad017 (patch)
tree7ee66f1b250a47ccc3a64a86aebec2b194f2f301 /meta/lib
parentcae42b5ac8897a5abaf48858d24ad1d61bb2324d (diff)
downloadpoky-8da99b16bca3a6be5dfb705d0cc4e44d0f2ad017.tar.gz
buildhistory: call a dependency parser only on actual dependency lists
Previously it was also called on filelists and possibly other items which broke the parser. (From OE-Core rev: cf525cbbc4277ba08415963cfa7dca384ad501dd) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/buildhistory_analysis.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py
index ad7fceb8bb..d3cde4f650 100644
--- a/meta/lib/oe/buildhistory_analysis.py
+++ b/meta/lib/oe/buildhistory_analysis.py
@@ -127,7 +127,7 @@ class ChangeRecord:
127 removed = list(set(aitems) - set(bitems)) 127 removed = list(set(aitems) - set(bitems))
128 added = list(set(bitems) - set(aitems)) 128 added = list(set(bitems) - set(aitems))
129 129
130 if not removed and not added: 130 if not removed and not added and self.fieldname in ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS']:
131 depvera = bb.utils.explode_dep_versions2(self.oldvalue, sort=False) 131 depvera = bb.utils.explode_dep_versions2(self.oldvalue, sort=False)
132 depverb = bb.utils.explode_dep_versions2(self.newvalue, sort=False) 132 depverb = bb.utils.explode_dep_versions2(self.newvalue, sort=False)
133 for i, j in zip(depvera.items(), depverb.items()): 133 for i, j in zip(depvera.items(), depverb.items()):