mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
buildhistory_analysis: skip FILELIST changes for dbg packages
Don't report when files are added or removed from dbg packages unless it results in the package being empty. (From OE-Core rev: ee57a989188519dd40310cb5576cbff4b247ad95) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
9d8e5ab47a
commit
275ef4900e
@@ -298,6 +298,8 @@ def compare_dict_blobs(path, ablob, bblob, report_all):
|
||||
if percentchg < monitor_numeric_threshold:
|
||||
continue
|
||||
elif (not report_all) and key in list_fields:
|
||||
if key == "FILELIST" and path.endswith("-dbg") and bstr.strip() != '':
|
||||
continue
|
||||
if key in ['RDEPENDS', 'RRECOMMENDS']:
|
||||
(depvera, depverb) = compare_pkg_lists(astr, bstr)
|
||||
if depvera == depverb:
|
||||
|
||||
Reference in New Issue
Block a user