summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-04 16:16:39 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-04 16:16:50 +0100
commit98bd952a5b72c584fc1094e4a61eb9e2a24cc97b (patch)
treee693f27fb1b3f02c97aa07dead29f3dc402931a3 /meta
parent75c9f43129da2cabb65659782d5ef30922fa9618 (diff)
downloadpoky-98bd952a5b72c584fc1094e4a61eb9e2a24cc97b.tar.gz
Revert "buildhistory_analysis: fix error when comparing image contents"
This reverts commit 5b616aa7b618f6ed221d6fa9738220a2c2349f7d. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oe/buildhistory_analysis.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py
index ffe12d0023..86b5a12347 100644
--- a/meta/lib/oe/buildhistory_analysis.py
+++ b/meta/lib/oe/buildhistory_analysis.py
@@ -400,7 +400,7 @@ def process_changes(repopath, revision1, revision2 = 'HEAD', report_all = False)
400 chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True) 400 chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True)
401 changes.append(chg) 401 changes.append(chg)
402 elif filename == 'image-info.txt': 402 elif filename == 'image-info.txt':
403 changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all, report_ver)) 403 changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all))
404 elif '/image-files/' in path: 404 elif '/image-files/' in path:
405 chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True) 405 chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True)
406 changes.append(chg) 406 changes.append(chg)