summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 56147c50a8..28b9667c47 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1769,7 +1769,7 @@ class RunQueue:
1769 latestmatch = sorted(matches.keys(), key=lambda f: matches[f])[-1] 1769 latestmatch = sorted(matches.keys(), key=lambda f: matches[f])[-1]
1770 prevh = __find_sha256__.search(latestmatch).group(0) 1770 prevh = __find_sha256__.search(latestmatch).group(0)
1771 output = bb.siggen.compare_sigfiles(latestmatch, match, recursecb) 1771 output = bb.siggen.compare_sigfiles(latestmatch, match, recursecb)
1772 bb.plain("\nTask %s:%s couldn't be used from the cache because:\n We need hash %s, closest matching task was %s\n " % (pn, taskname, h, prevh) + '\n '.join(output)) 1772 bb.plain("\nTask %s:%s couldn't be used from the cache because:\n We need hash %s, most recent matching task was %s\n " % (pn, taskname, h, prevh) + '\n '.join(output))
1773 1773
1774 1774
1775class RunQueueExecute: 1775class RunQueueExecute: