summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/parse_py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/parse_py')
-rw-r--r--bitbake/lib/bb/parse/parse_py/BBHandler.py6
-rw-r--r--bitbake/lib/bb/parse/parse_py/ConfHandler.py11
2 files changed, 8 insertions, 9 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py
index 2d6e331a1d..125f458de7 100644
--- a/bitbake/lib/bb/parse/parse_py/BBHandler.py
+++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py
@@ -68,10 +68,8 @@ def supports(fn, d):
68 """Return True if fn has a supported extension""" 68 """Return True if fn has a supported extension"""
69 return os.path.splitext(fn)[-1] in [".bb", ".bbclass", ".inc"] 69 return os.path.splitext(fn)[-1] in [".bb", ".bbclass", ".inc"]
70 70
71def inherit(files, d): 71def inherit(files, fn, lineno, d):
72 __inherit_cache = data.getVar('__inherit_cache', d) or [] 72 __inherit_cache = data.getVar('__inherit_cache', d) or []
73 fn = ""
74 lineno = 0
75 for file in files: 73 for file in files:
76 file = data.expand(file, d) 74 file = data.expand(file, d)
77 if not os.path.isabs(file) and not file.endswith(".bbclass"): 75 if not os.path.isabs(file) and not file.endswith(".bbclass"):
@@ -81,7 +79,7 @@ def inherit(files, d):
81 logger.log(logging.DEBUG -1, "BB %s:%d: inheriting %s", fn, lineno, file) 79 logger.log(logging.DEBUG -1, "BB %s:%d: inheriting %s", fn, lineno, file)
82 __inherit_cache.append( file ) 80 __inherit_cache.append( file )
83 data.setVar('__inherit_cache', __inherit_cache, d) 81 data.setVar('__inherit_cache', __inherit_cache, d)
84 include(fn, file, d, "inherit") 82 include(fn, file, lineno, d, "inherit")
85 __inherit_cache = data.getVar('__inherit_cache', d) or [] 83 __inherit_cache = data.getVar('__inherit_cache', d) or []
86 84
87def get_statements(filename, absolute_filename, base_name): 85def get_statements(filename, absolute_filename, base_name):
diff --git a/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/bitbake/lib/bb/parse/parse_py/ConfHandler.py
index 6ae9d973e7..9242632c50 100644
--- a/bitbake/lib/bb/parse/parse_py/ConfHandler.py
+++ b/bitbake/lib/bb/parse/parse_py/ConfHandler.py
@@ -44,10 +44,11 @@ def init(data):
44def supports(fn, d): 44def supports(fn, d):
45 return fn[-5:] == ".conf" 45 return fn[-5:] == ".conf"
46 46
47def include(oldfn, fn, data, error_out): 47def include(oldfn, fn, lineno, data, error_out):
48 """ 48 """
49 error_out If True a ParseError will be raised if the to be included 49 error_out: A string indicating the verb (e.g. "include", "inherit") to be
50 config-files could not be included. 50 used in a ParseError that will be raised if the file to be included could
51 not be included. Specify False to avoid raising an error in this case.
51 """ 52 """
52 if oldfn == fn: # prevent infinite recursion 53 if oldfn == fn: # prevent infinite recursion
53 return None 54 return None
@@ -68,7 +69,7 @@ def include(oldfn, fn, data, error_out):
68 ret = handle(fn, data, True) 69 ret = handle(fn, data, True)
69 except IOError: 70 except IOError:
70 if error_out: 71 if error_out:
71 raise ParseError("Could not %(error_out)s file %(fn)s" % vars() ) 72 raise ParseError("Could not %(error_out)s file %(fn)s" % vars(), oldfn, lineno)
72 logger.debug(2, "CONF file '%s' not found", fn) 73 logger.debug(2, "CONF file '%s' not found", fn)
73 74
74def handle(fn, data, include): 75def handle(fn, data, include):
@@ -131,7 +132,7 @@ def feeder(lineno, s, fn, statements):
131 ast.handleExport(statements, fn, lineno, m) 132 ast.handleExport(statements, fn, lineno, m)
132 return 133 return
133 134
134 raise ParseError("%s:%d: unparsed line: '%s'" % (fn, lineno, s)); 135 raise ParseError("unparsed line: '%s'" % s, fn, lineno);
135 136
136# Add us to the handlers list 137# Add us to the handlers list
137from bb.parse import handlers 138from bb.parse import handlers