summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/ast.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/ast.py')
-rw-r--r--bitbake/lib/bb/parse/ast.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py
index f9998798d8..5a086b4e95 100644
--- a/bitbake/lib/bb/parse/ast.py
+++ b/bitbake/lib/bb/parse/ast.py
@@ -471,6 +471,9 @@ def finalize(fn, d, variant = None):
471 if d.getVar("_FAILPARSINGERRORHANDLED", False) == True: 471 if d.getVar("_FAILPARSINGERRORHANDLED", False) == True:
472 raise bb.BBHandledException() 472 raise bb.BBHandledException()
473 473
474 inherits = [x[0] for x in (d.getVar('__BBDEFINHERITS', False) or [('',)])]
475 bb.event.fire(bb.event.RecipePreDeferredInherits(fn, inherits), d)
476
474 while True: 477 while True:
475 inherits = d.getVar('__BBDEFINHERITS', False) or [] 478 inherits = d.getVar('__BBDEFINHERITS', False) or []
476 if not inherits: 479 if not inherits: