diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py index 393c258e46..817f638189 100644 --- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py +++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py @@ -98,6 +98,7 @@ class HobHandler(gobject.GObject): self.server = server self.error_msg = "" + self.lastCommand = "" self.initcmd = None self.parsing = False @@ -112,6 +113,7 @@ class HobHandler(gobject.GObject): self.generating = False def runCommand(self, commandline): + self.lastCommand = commandline[0] try: result, error = self.server.runCommand(commandline) if error: @@ -251,6 +253,10 @@ class HobHandler(gobject.GObject): self.current_phase = None self.run_next_command() elif isinstance(event, bb.command.CommandFailed): + if self.error_msg == "": + self.error_msg = "The command \"" + self.lastCommand + self.error_msg += "\" was sent to bitbake server but it failed. Please" + self.error_msg += " check the code executed by this command in bitbake." self.commands_async = [] self.display_error() elif isinstance(event, (bb.event.ParseStarted,