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 15:33:07 +0000 |
commit | 275ef4900ebc7378a34d098005e905ad6c979954 (patch) | |
tree | 5c6901e7705a3f42e6d0b034913230ed1a57e9f7 /meta/lib/oe/buildhistory_analysis.py | |
parent | 9d8e5ab47a7edf8ef72dcec77b000e43bb1d293f (diff) | |
download | poky-275ef4900ebc7378a34d098005e905ad6c979954.tar.gz |
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>
Diffstat (limited to 'meta/lib/oe/buildhistory_analysis.py')
-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): | |||
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: |