diff options
-rwxr-xr-x | bitbake/bin/bitbake-diffsigs | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/bin/bitbake-diffsigs b/bitbake/bin/bitbake-diffsigs index fa430bb3b3..73229b7735 100755 --- a/bitbake/bin/bitbake-diffsigs +++ b/bitbake/bin/bitbake-diffsigs | |||
@@ -105,7 +105,7 @@ def recursecb(key, hash1, hash2): | |||
105 | out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb, color=color) | 105 | out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb, color=color) |
106 | for change in out2: | 106 | for change in out2: |
107 | for line in change.splitlines(): | 107 | for line in change.splitlines(): |
108 | recout.append(' ' + line) | 108 | recout.append(' ' + line) |
109 | 109 | ||
110 | return recout | 110 | return recout |
111 | 111 | ||
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 329cda33a4..524c85d7d3 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1667,7 +1667,7 @@ class RunQueue: | |||
1667 | recout = [] | 1667 | recout = [] |
1668 | if len(hashfiles) == 2: | 1668 | if len(hashfiles) == 2: |
1669 | out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb) | 1669 | out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb) |
1670 | recout.extend(list(' ' + l for l in out2)) | 1670 | recout.extend(list(' ' + l for l in out2)) |
1671 | else: | 1671 | else: |
1672 | recout.append("Unable to find matching sigdata for %s with hashes %s or %s" % (key, hash1, hash2)) | 1672 | recout.append("Unable to find matching sigdata for %s with hashes %s or %s" % (key, hash1, hash2)) |
1673 | 1673 | ||