From 4a8b8a405df5a06a23f57f250c297cd39ab7b1a4 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 15 Apr 2020 16:22:55 +0100 Subject: bitbake: event/ast: Add RecipePostKeyExpansion event (Bitbake rev: 5c30cbe35e921f118e7da6b804af281627329d77) Signed-off-by: Richard Purdie --- bitbake/lib/bb/parse/ast.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bitbake/lib/bb/parse/ast.py') diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py index eb8cfa21b8..785aa974eb 100644 --- a/bitbake/lib/bb/parse/ast.py +++ b/bitbake/lib/bb/parse/ast.py @@ -338,6 +338,9 @@ def finalize(fn, d, variant = None): bb.event.fire(bb.event.RecipePreFinalise(fn), d) bb.data.expandKeys(d) + + bb.event.fire(bb.event.RecipePostKeyExpansion(fn), d) + runAnonFuncs(d) tasklist = d.getVar('__BBTASKS', False) or [] -- cgit v1.2.3-54-g00ecf