diff options
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 2 insertions, 0 deletions
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: | |||
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 | ||
1246 | class RunQueueExecute: | 1248 | class RunQueueExecute: |
1247 | 1249 | ||