summaryrefslogtreecommitdiffstats
path: root/bitbake
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:37:19 +0100
commitd7cad22f482f8e5a8230572a23a0ca9800bfe7f3 (patch)
treede3e0741270f42f13dda8e3355f34541e6769185 /bitbake
parent7ccc4e25a3ea44a5c6b6a14f31897df51e83f397 (diff)
downloadpoky-d7cad22f482f8e5a8230572a23a0ca9800bfe7f3.tar.gz
bitbake: runqueue: Add message to explain the problem if diffsigs multiple tasks don't exist
(Bitbake rev: 8292c64e6edae1bf6f554140e8f603cedbd01047) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index b1fe6b8a7b..4cc86d84c6 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1242,6 +1242,8 @@ class RunQueue:
1242 prevh = __find_md5__.search(latestmatch).group(0) 1242 prevh = __find_md5__.search(latestmatch).group(0)
1243 output = bb.siggen.compare_sigfiles(latestmatch, match, recursecb) 1243 output = bb.siggen.compare_sigfiles(latestmatch, match, recursecb)
1244 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)) 1244 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))
1245 else:
1246 bb.plain("Error, can't find multiple tasks at divergence point? Was there a previously run task?")
1245 1247
1246class RunQueueExecute: 1248class RunQueueExecute:
1247 1249