| Submitter | Richard Purdie |
|---|---|
| Date | Aug. 22, 2012, 9:40 p.m. |
| Message ID | <1345671614.3907.151.camel@ted> |
| Download | mbox | patch |
| Permalink | /patch/35183/ |
| State | New |
| Headers | show |
Comments
Patch
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' %
This removes some unnecessary tracebacks Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> ---