summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/buildhistory_analysis.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py
index a828f28421..2942f72d18 100644
--- a/meta/lib/oe/buildhistory_analysis.py
+++ b/meta/lib/oe/buildhistory_analysis.py
@@ -298,6 +298,8 @@ def compare_dict_blobs(path, ablob, bblob, report_all):
298 if percentchg < monitor_numeric_threshold: 298 if percentchg < monitor_numeric_threshold:
299 continue 299 continue
300 elif (not report_all) and key in list_fields: 300 elif (not report_all) and key in list_fields:
301 if key == "FILELIST" and path.endswith("-dbg") and bstr.strip() != '':
302 continue
301 if key in ['RDEPENDS', 'RRECOMMENDS']: 303 if key in ['RDEPENDS', 'RRECOMMENDS']:
302 (depvera, depverb) = compare_pkg_lists(astr, bstr) 304 (depvera, depverb) = compare_pkg_lists(astr, bstr)
303 if depvera == depverb: 305 if depvera == depverb: