summaryrefslogtreecommitdiffstats
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-04-25 00:05:20 +0100
commitac5b7cef596114ec96fcff34a3251ebf959395fd (patch)
treea35b08820e95aa9f5f10acf9a924a68a23b136d7
parente567c3761b697e09ed0c9806c0a7b8e57419a17f (diff)
downloadpoky-ac5b7cef596114ec96fcff34a3251ebf959395fd.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: 90bbe1bbc1667bf836d93df1e1ecca0c43315d06) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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()):