diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-09-28 08:52:32 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 14:46:37 +0000 |
commit | c81cd1be64a6d8c725fc7323d040ed2fad41c826 (patch) | |
tree | 878db3ca9fa00af9df7d5145c80330085d3c91cc /bitbake/lib/bb/cooker.py | |
parent | 26eda933379801ef1c8b4b09e67d14f498cd3813 (diff) | |
download | openembedded-core-c81cd1be64a6d8c725fc7323d040ed2fad41c826.tar.gz openembedded-core-c81cd1be64a6d8c725fc7323d040ed2fad41c826.tar.bz2 openembedded-core-c81cd1be64a6d8c725fc7323d040ed2fad41c826.zip |
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.py | 4 |
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: path, _ = os.path.split(path) def parseConfigurationFiles(self, files): - def _parse(f, data): + def _parse(f, data, include=False): try: - return bb.parse.handle(f, data) + return bb.parse.handle(f, data, include) except (IOError, bb.parse.ParseError) as exc: parselog.critical("Unable to parse %s: %s" % (f, exc)) sys.exit(1) |