summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-09-28 08:52:32 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2011-01-04 14:46:37 +0000
commitc81cd1be64a6d8c725fc7323d040ed2fad41c826 (patch)
tree878db3ca9fa00af9df7d5145c80330085d3c91cc /bitbake/lib/bb/cooker.py
parent26eda933379801ef1c8b4b09e67d14f498cd3813 (diff)
downloadpoky-c81cd1be64a6d8c725fc7323d040ed2fad41c826.tar.gz
Fix syntax issue and don't include 'd' in ui_queue
(Bitbake rev: bed8e09971dc577f5443ad3d89aa14634c54eb16) 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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 7adda09fde..90366cd76c 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -494,9 +494,9 @@ class BBCooker:
494 path, _ = os.path.split(path) 494 path, _ = os.path.split(path)
495 495
496 def parseConfigurationFiles(self, files): 496 def parseConfigurationFiles(self, files):
497 def _parse(f, data): 497 def _parse(f, data, include=False):
498 try: 498 try:
499 return bb.parse.handle(f, data) 499 return bb.parse.handle(f, data, include)
500 except (IOError, bb.parse.ParseError) as exc: 500 except (IOError, bb.parse.ParseError) as exc:
501 parselog.critical("Unable to parse %s: %s" % (f, exc)) 501 parselog.critical("Unable to parse %s: %s" % (f, exc))
502 sys.exit(1) 502 sys.exit(1)