diff options
-rwxr-xr-x | bitbake/bin/bitbake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 21a6c8144a..4d93a35cdc 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -323,6 +323,8 @@ def main(): | |||
323 | if __name__ == "__main__": | 323 | if __name__ == "__main__": |
324 | try: | 324 | try: |
325 | ret = main() | 325 | ret = main() |
326 | except bb.BBHandledException: | ||
327 | ret = 1 | ||
326 | except Exception: | 328 | except Exception: |
327 | ret = 1 | 329 | ret = 1 |
328 | import traceback | 330 | import traceback |