diff options
| -rwxr-xr-x | bitbake/bin/bitbake-diffsigs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/bin/bitbake-diffsigs b/bitbake/bin/bitbake-diffsigs index 1e3de092af..b2ebe91dbf 100755 --- a/bitbake/bin/bitbake-diffsigs +++ b/bitbake/bin/bitbake-diffsigs | |||
| @@ -84,9 +84,9 @@ def find_compare_task(bbhandler, pn, taskname): | |||
| 84 | return recout | 84 | return recout |
| 85 | 85 | ||
| 86 | # Recurse into signature comparison | 86 | # Recurse into signature comparison |
| 87 | logger.debug("Signature file (previous): %s" % latestfiles[0]) | 87 | logger.debug("Signature file (previous): %s" % latestfiles[-2]) |
| 88 | logger.debug("Signature file (latest): %s" % latestfiles[1]) | 88 | logger.debug("Signature file (latest): %s" % latestfiles[-1]) |
| 89 | output = bb.siggen.compare_sigfiles(latestfiles[0], latestfiles[1], recursecb) | 89 | output = bb.siggen.compare_sigfiles(latestfiles[-2], latestfiles[-1], recursecb) |
| 90 | if output: | 90 | if output: |
| 91 | print('\n'.join(output)) | 91 | print('\n'.join(output)) |
| 92 | sys.exit(0) | 92 | sys.exit(0) |
