summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/parse_py/BBHandler.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/parse_py/BBHandler.py')
-rw-r--r--bitbake/lib/bb/parse/parse_py/BBHandler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py
index 584966fea1..4d5b45e1ef 100644
--- a/bitbake/lib/bb/parse/parse_py/BBHandler.py
+++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py
@@ -101,7 +101,7 @@ def get_statements(filename, absolute_filename, base_name):
101 cached_statements[absolute_filename] = statements 101 cached_statements[absolute_filename] = statements
102 return statements 102 return statements
103 103
104def handle(fn, d, include): 104def handle(fn, d, include, baseconfig=False):
105 global __infunc__, __body__, __residue__, __classname__ 105 global __infunc__, __body__, __residue__, __classname__
106 __body__ = [] 106 __body__ = []
107 __infunc__ = [] 107 __infunc__ = []
@@ -265,7 +265,7 @@ def feeder(lineno, s, fn, root, statements, eof=False):
265 ast.handleInherit(statements, fn, lineno, m) 265 ast.handleInherit(statements, fn, lineno, m)
266 return 266 return
267 267
268 return ConfHandler.feeder(lineno, s, fn, statements) 268 return ConfHandler.feeder(lineno, s, fn, statements, conffile=False)
269 269
270# Add us to the handlers list 270# Add us to the handlers list
271from .. import handlers 271from .. import handlers