[bitbake-devel] [PATCH] cooker: Add explict handling of BBHandledException for parsing failures

Richard Purdie richard.purdie at linuxfoundation.org
Wed Aug 22 21:40:14 UTC 2012


This removes some unnecessary tracebacks

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index c0870b7..b2c9e0b 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1661,6 +1661,11 @@ class CookerParser(object):
         except StopIteration:
             self.shutdown()
             return False
+        except bb.BBHandledException as exc:
+            self.error += 1
+            logger.error('Failed to parse recipe: %s' % exc.recipe)
+            self.shutdown(clean=False)
+            return False
         except ParsingFailure as exc:
             self.error += 1
             logger.error('Unable to parse %s: %s' %






More information about the bitbake-devel mailing list