]> code.ossystems Code Review - openembedded-core.git/commitdiff
Revert "buildhistory_analysis: fix error when comparing image contents"
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 4 Apr 2014 15:16:39 +0000 (16:16 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 4 Apr 2014 15:16:39 +0000 (16:16 +0100)
This reverts commit 5b616aa7b618f6ed221d6fa9738220a2c2349f7d.

meta/lib/oe/buildhistory_analysis.py

index ffe12d0023b0c3387dc9d6db36f38304bc2f9dbb..86b5a123472076dc8c0ad9cdceee77611ddfcd1f 100644 (file)
@@ -400,7 +400,7 @@ def process_changes(repopath, revision1, revision2 = 'HEAD', report_all = False)
                     chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True)
                     changes.append(chg)
             elif filename == 'image-info.txt':
-                changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all, report_ver))
+                changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all))
             elif '/image-files/' in path:
                 chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True)
                 changes.append(chg)