diff options
Diffstat (limited to 'meta/lib/oe')
-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 4f3e6359c6..d09911cb07 100644 --- a/meta/lib/oe/buildhistory_analysis.py +++ b/meta/lib/oe/buildhistory_analysis.py | |||
@@ -307,7 +307,7 @@ def process_changes(repopath, revision1, revision2 = 'HEAD', report_all = False) | |||
307 | if chg.path == chg2.path or os.path.dirname(chg.path) == chg2.path: | 307 | if chg.path == chg2.path or os.path.dirname(chg.path) == chg2.path: |
308 | if chg2.fieldname in related_fields.get(chg.fieldname, []): | 308 | if chg2.fieldname in related_fields.get(chg.fieldname, []): |
309 | chg.related.append(chg2) | 309 | chg.related.append(chg2) |
310 | elif chg.path.startswith('packages/') and chg2.fieldname in ['PE', 'PV', 'PR']: | 310 | elif chg.path == chg2.path and chg.path.startswith('packages/') and chg2.fieldname in ['PE', 'PV', 'PR']: |
311 | chg.related.append(chg2) | 311 | chg.related.append(chg2) |
312 | 312 | ||
313 | if report_all: | 313 | if report_all: |