summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-12-15 22:07:38 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2011-01-04 14:46:51 +0000
commit2984877989ec181409871dfde6723f7f9de466e1 (patch)
tree009ca8f20a02e989dbe878ac3530908f830f6a02 /bitbake/lib/bb/cooker.py
parent2f0c23d28d0f7a4b33f24aff7e799b13cb437a67 (diff)
downloadpoky-2984877989ec181409871dfde6723f7f9de466e1.tar.gz
cooker: don't swallow recipe parse errors
(Bitbake rev: 1f5d49ce64e5e1c7705edbfa3c8e19649c21edd2) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 8ac88b99a4..7a9b1d58d6 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -965,7 +965,11 @@ class CookerExit(bb.event.Event):
965 965
966def parse_file(task): 966def parse_file(task):
967 filename, appends = task 967 filename, appends = task
968 return True, bb.cache.Cache.parse(filename, appends, parse_file.cfg) 968 try:
969 return True, bb.cache.Cache.parse(filename, appends, parse_file.cfg)
970 except Exception, exc:
971 exc.recipe = filename
972 raise exc
969 973
970class CookerParser(object): 974class CookerParser(object):
971 def __init__(self, cooker, filelist, masked): 975 def __init__(self, cooker, filelist, masked):
@@ -1049,7 +1053,7 @@ class CookerParser(object):
1049 raise 1053 raise
1050 except Exception as exc: 1054 except Exception as exc:
1051 self.shutdown(clean=False) 1055 self.shutdown(clean=False)
1052 sys.exit(1) 1056 bb.fatal('Error parsing %s: %s' % (exc.recipe, exc))
1053 1057
1054 self.current += 1 1058 self.current += 1
1055 self.virtuals += len(result) 1059 self.virtuals += len(result)