mirror of
git://git.yoctoproject.org/poky
synced 2026-08-13 06:05:35 +00:00
bitbake: event/ast: Add RecipePostKeyExpansion event
(Bitbake rev: 5c30cbe35e921f118e7da6b804af281627329d77) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
0156afb7e2
commit
4a8b8a405d
@ -389,6 +389,10 @@ class RecipeEvent(Event):
|
||||
class RecipePreFinalise(RecipeEvent):
|
||||
""" Recipe Parsing Complete but not yet finalised"""
|
||||
|
||||
class RecipePostKeyExpansion(RecipeEvent):
|
||||
""" Recipe Parsing Complete but not yet finalised"""
|
||||
|
||||
|
||||
class RecipeTaskPreProcess(RecipeEvent):
|
||||
"""
|
||||
Recipe Tasks about to be finalised
|
||||
|
||||
@ -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 []
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user