summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse')
-rw-r--r--bitbake/lib/bb/parse/ast.py4
-rw-r--r--bitbake/lib/bb/parse/parse_py/BBHandler.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py
index 7cef3d0373..eae840fa8d 100644
--- a/bitbake/lib/bb/parse/ast.py
+++ b/bitbake/lib/bb/parse/ast.py
@@ -304,7 +304,7 @@ def handleBBHandlers(statements, filename, lineno, m):
304 304
305def handleInherit(statements, filename, lineno, m): 305def handleInherit(statements, filename, lineno, m):
306 classes = m.group(1) 306 classes = m.group(1)
307 statements.append(InheritNode(filename, lineno, classes.split())) 307 statements.append(InheritNode(filename, lineno, classes))
308 308
309def finalize(fn, d, variant = None): 309def finalize(fn, d, variant = None):
310 all_handlers = {} 310 all_handlers = {}
@@ -452,7 +452,7 @@ def multi_finalize(fn, d):
452 d.setVar("BBEXTENDVARIANT", variantmap[name]) 452 d.setVar("BBEXTENDVARIANT", variantmap[name])
453 else: 453 else:
454 d.setVar("PN", "%s-%s" % (pn, name)) 454 d.setVar("PN", "%s-%s" % (pn, name))
455 bb.parse.BBHandler.inherit([extendedmap[name]], fn, 0, d) 455 bb.parse.BBHandler.inherit(extendedmap[name], fn, 0, d)
456 456
457 safe_d.setVar("BBCLASSEXTEND", extended) 457 safe_d.setVar("BBCLASSEXTEND", extended)
458 _create_variants(datastores, extendedmap.keys(), extendfunc) 458 _create_variants(datastores, extendedmap.keys(), extendfunc)
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py
index 125f458de7..815bce1d75 100644
--- a/bitbake/lib/bb/parse/parse_py/BBHandler.py
+++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py
@@ -70,8 +70,8 @@ def supports(fn, d):
70 70
71def inherit(files, fn, lineno, 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 files = d.expand(files).split()
73 for file in files: 74 for file in files:
74 file = data.expand(file, d)
75 if not os.path.isabs(file) and not file.endswith(".bbclass"): 75 if not os.path.isabs(file) and not file.endswith(".bbclass"):
76 file = os.path.join('classes', '%s.bbclass' % file) 76 file = os.path.join('classes', '%s.bbclass' % file)
77 77