diff options
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/buildhistory_analysis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py index 708e1b388e..5b28774c98 100644 --- a/meta/lib/oe/buildhistory_analysis.py +++ b/meta/lib/oe/buildhistory_analysis.py | |||
@@ -413,7 +413,7 @@ def compare_dict_blobs(path, ablob, bblob, report_all, report_ver): | |||
413 | if abs(percentchg) < monitor_numeric_threshold: | 413 | if abs(percentchg) < monitor_numeric_threshold: |
414 | continue | 414 | continue |
415 | elif (not report_all) and key in list_fields: | 415 | elif (not report_all) and key in list_fields: |
416 | if key == "FILELIST" and path.endswith("-dbg") and bstr.strip() != '': | 416 | if key == "FILELIST" and (path.endswith("-dbg") or path.endswith("-src")) and bstr.strip() != '': |
417 | continue | 417 | continue |
418 | if key in ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS']: | 418 | if key in ['RPROVIDES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RREPLACES', 'RCONFLICTS']: |
419 | (depvera, depverb) = compare_pkg_lists(astr, bstr) | 419 | (depvera, depverb) = compare_pkg_lists(astr, bstr) |