]> code.ossystems Code Review - openembedded-core.git/commitdiff
Add missing 'return False' to the SystemExit handler in runAsyncCommand
authorChris Larson <chris_larson@mentor.com>
Sat, 19 Jun 2010 00:31:37 +0000 (17:31 -0700)
committerRichard Purdie <rpurdie@linux.intel.com>
Fri, 2 Jul 2010 14:41:37 +0000 (15:41 +0100)
(Bitbake rev: 966490c555cbdc09f52e1dcc68d3772c28ad9cee)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/command.py

index 32d5b5bab6fe7ba2f0cafcdc66cf1efd94d8024f..9a8d689e2a709d9ce4d7155b09859dcbb5fdf5e1 100644 (file)
@@ -98,6 +98,7 @@ class Command:
                 self.finishAsyncCommand(arg)
             else:
                 self.finishAsyncCommand("Exited with %s" % arg)
+            return False
         except Exception:
             import traceback
             self.finishAsyncCommand(traceback.format_exc())