diff options
Diffstat (limited to 'bitbake/bin/bitbake-diffsigs')
-rwxr-xr-x | bitbake/bin/bitbake-diffsigs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-diffsigs b/bitbake/bin/bitbake-diffsigs index 5400e5b92b..4ca085f073 100755 --- a/bitbake/bin/bitbake-diffsigs +++ b/bitbake/bin/bitbake-diffsigs | |||
@@ -67,7 +67,9 @@ def find_compare_task(bbhandler, pn, taskname): | |||
67 | recout.append("Unable to find matching sigdata for %s with hash %s" % (key, hash2)) | 67 | recout.append("Unable to find matching sigdata for %s with hash %s" % (key, hash2)) |
68 | else: | 68 | else: |
69 | out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb) | 69 | out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb) |
70 | recout.extend(list(' ' + l for l in out2)) | 70 | for change in out2: |
71 | for line in change.splitlines(): | ||
72 | recout.append(' ' + line) | ||
71 | 73 | ||
72 | return recout | 74 | return recout |
73 | 75 | ||