From c1803b774a247522378edfd116bf44614352fdc4 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 28 Mar 2015 18:56:36 +0000 Subject: bitbake: runqueue: Add message to explain the problem if diffsigs multiple tasks don't exist (Bitbake rev: 3bfc0105ae993a3304face1fc0af75e012673567) Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 90c610695f..2853b7305d 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/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: -- cgit v1.2.3-54-g00ecf