diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-11-17 12:28:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-18 12:44:04 +0000 |
commit | 36255d4c233682910a38ef9b6109b112f816c87f (patch) | |
tree | 82925e616e0f1684dd337fb7058a7c56682b2567 /meta/lib/oe | |
parent | d7ccfc7605f1eb61511b1b2b8db4ac689ce6a468 (diff) | |
download | poky-36255d4c233682910a38ef9b6109b112f816c87f.tar.gz |
buildhistory_analysis: fix error when comparing image contents
OE-Core commit b7de1eaac9eed559b2d68058f5de67de74a6cb58 added an extra
argument to the compare_dict_blobs() function but missed adding the
argument to one call to compare two versions of the image-info.txt file.
(From OE-Core rev: 24a45d752c3e3d0d8b59c040355e4fe7de22b041)
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')
-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 dd17dd5645..ed3a1ec81c 100644 --- a/meta/lib/oe/buildhistory_analysis.py +++ b/meta/lib/oe/buildhistory_analysis.py | |||
@@ -403,7 +403,7 @@ def process_changes(repopath, revision1, revision2='HEAD', report_all=False, rep | |||
403 | chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True) | 403 | chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True) |
404 | changes.append(chg) | 404 | changes.append(chg) |
405 | elif filename == 'image-info.txt': | 405 | elif filename == 'image-info.txt': |
406 | changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all)) | 406 | changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all, report_ver)) |
407 | elif '/image-files/' in path: | 407 | elif '/image-files/' in path: |
408 | chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True) | 408 | chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True) |
409 | changes.append(chg) | 409 | changes.append(chg) |