diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-03-20 16:06:26 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-21 14:16:18 +0000 |
commit | ee57a989188519dd40310cb5576cbff4b247ad95 (patch) | |
tree | 7422accb2d7b3904786f7c33fc522307438695ed /meta/lib | |
parent | f72b2a1bda35a99292063c1cc6ff563b397e190d (diff) | |
download | openembedded-core-ee57a989188519dd40310cb5576cbff4b247ad95.tar.gz openembedded-core-ee57a989188519dd40310cb5576cbff4b247ad95.tar.bz2 openembedded-core-ee57a989188519dd40310cb5576cbff4b247ad95.zip |
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.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/buildhistory_analysis.py | 2 |
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): 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: |