summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/tinfoil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tinfoil.py b/bitbake/lib/bb/tinfoil.py
index e68a3b879a..8978bb5261 100644
--- a/bitbake/lib/bb/tinfoil.py
+++ b/bitbake/lib/bb/tinfoil.py
@@ -773,7 +773,7 @@ class Tinfoil:
773 if isinstance(event, bb.command.CommandCompleted): 773 if isinstance(event, bb.command.CommandCompleted):
774 result = True 774 result = True
775 break 775 break
776 if isinstance(event, bb.command.CommandFailed): 776 if isinstance(event, (bb.command.CommandFailed, bb.command.CommandExit)):
777 self.logger.error(str(event)) 777 self.logger.error(str(event))
778 result = False 778 result = False
779 break 779 break