mirror of
https://git.yoctoproject.org/poky
synced 2026-09-20 03:49:32 +02:00
Resurrect display of failed files
This was inadvertantly removed when trying to reduce the amount of duplicated information the user sees when a failure occurs. (Bitbake rev: 850d6158ea9daa58e896fd6b258d586df797dcf4) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
committed by
Richard Purdie
parent
283b0a20c2
commit
493f0cff71
@@ -692,6 +692,8 @@ class BBCooker:
|
|||||||
try:
|
try:
|
||||||
retval = rq.execute_runqueue()
|
retval = rq.execute_runqueue()
|
||||||
except runqueue.TaskFailure as exc:
|
except runqueue.TaskFailure as exc:
|
||||||
|
for fnid in exc.args:
|
||||||
|
buildlog.error("'%s' failed" % taskdata.fn_index[fnid])
|
||||||
failures += len(exc.args)
|
failures += len(exc.args)
|
||||||
retval = False
|
retval = False
|
||||||
if not retval:
|
if not retval:
|
||||||
@@ -727,6 +729,8 @@ class BBCooker:
|
|||||||
try:
|
try:
|
||||||
retval = rq.execute_runqueue()
|
retval = rq.execute_runqueue()
|
||||||
except runqueue.TaskFailure as exc:
|
except runqueue.TaskFailure as exc:
|
||||||
|
for fnid in exc.args:
|
||||||
|
buildlog.error("'%s' failed" % taskdata.fn_index[fnid])
|
||||||
failures += len(exc.args)
|
failures += len(exc.args)
|
||||||
retval = False
|
retval = False
|
||||||
if not retval:
|
if not retval:
|
||||||
|
|||||||
Reference in New Issue
Block a user