]> code.ossystems Code Review - openembedded-core.git/commitdiff
buildhistory_analysis: skip FILELIST changes for dbg packages
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Tue, 20 Mar 2012 16:06:26 +0000 (16:06 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 21 Mar 2012 14:16:18 +0000 (14:16 +0000)
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>
meta/lib/oe/buildhistory_analysis.py

index a828f28421fd04604ff66a840b75112e6010f1df..2942f72d18fcc7bf529001ea228bd9bd87b63bf3 100644 (file)
@@ -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: