aboutsummaryrefslogtreecommitdiffstats
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.py16
1 files changed, 15 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py
index 3a309aed60..97786c4202 100644
--- a/bitbake/lib/bb/parse/parse_py/BBHandler.py
+++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py
@@ -181,7 +181,21 @@ def handle(fn, d, include = 0):
classes.remove(__classname__)
else:
if include == 0:
- finalise(fn, d)
+ multi = data.getVar('BBCLASSEXTEND', d, 1)
+ if multi:
+ based = bb.data.createCopy(d)
+ finalise(fn, based)
+ darray = {"": based}
+ for cls in multi.split():
+ pn = data.getVar('PN', d, True)
+ based = bb.data.createCopy(d)
+ data.setVar('PN', pn + '-' + cls, based)
+ inherit([cls], based)
+ finalise(fn, based)
+ darray[cls] = based
+ return darray
+ else:
+ finalise(fn, d)
bbpath.pop(0)
if oldfile:
bb.data.setVar("FILE", oldfile, d)