summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-28 18:56:36 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-01 21:24:15 +0100
commit3bfc0105ae993a3304face1fc0af75e012673567 (patch)
treecf0603bcc22117bae83172a740777b17e74d4a8c
parentfbf1c39641f78d553961974a2bb96256eb9496e7 (diff)
downloadbitbake-3bfc0105ae993a3304face1fc0af75e012673567.tar.gz
runqueue: Add message to explain the problem if diffsigs multiple tasks don't exist
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 90c610695..2853b7305 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1242,6 +1242,8 @@ class RunQueue:
prevh = __find_md5__.search(latestmatch).group(0)
output = bb.siggen.compare_sigfiles(latestmatch, match, recursecb)
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))
+ else:
+ bb.plain("Error, can't find multiple tasks at divergence point? Was there a previously run task?")
class RunQueueExecute: