diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2025-09-12 16:13:54 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-09-15 17:57:24 +0100 |
commit | 8221eb24247e449b9f39e43b70ac3e21e7087f7a (patch) | |
tree | 123330ca7e227885a45a9cfb5307fe0488eb9b47 | |
parent | 8b48566f53760decc18490cd775c2193e65dbdcc (diff) | |
download | poky-8221eb24247e449b9f39e43b70ac3e21e7087f7a.tar.gz |
base.bbclass: remove unneeded bb.runqueue import
base.bbclass no longer uses bb.runqueue[1]. Remove the import.
[1] https://git.openembedded.org/openembedded-core/commit/?id=2af49716504f65be0cb01f609ea9bfa334926589
(From OE-Core rev: f28415e3ca69b2fb81ae3e3987ef40aa8184b82d)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes-global/base.bbclass | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/meta/classes-global/base.bbclass b/meta/classes-global/base.bbclass index 6be1f5c2df..6de17d1bb5 100644 --- a/meta/classes-global/base.bbclass +++ b/meta/classes-global/base.bbclass | |||
@@ -279,8 +279,6 @@ def buildcfg_neededvars(d): | |||
279 | addhandler base_eventhandler | 279 | addhandler base_eventhandler |
280 | base_eventhandler[eventmask] = "bb.event.ConfigParsed bb.event.MultiConfigParsed bb.event.BuildStarted bb.event.RecipePreFinalise bb.event.RecipeParsed bb.event.RecipePreDeferredInherits" | 280 | base_eventhandler[eventmask] = "bb.event.ConfigParsed bb.event.MultiConfigParsed bb.event.BuildStarted bb.event.RecipePreFinalise bb.event.RecipeParsed bb.event.RecipePreDeferredInherits" |
281 | python base_eventhandler() { | 281 | python base_eventhandler() { |
282 | import bb.runqueue | ||
283 | |||
284 | if isinstance(e, bb.event.RecipePreDeferredInherits): | 282 | if isinstance(e, bb.event.RecipePreDeferredInherits): |
285 | # Use this to snoop on class extensions and set these up before the deferred inherits | 283 | # Use this to snoop on class extensions and set these up before the deferred inherits |
286 | # are processed which allows overrides on conditional variables. | 284 | # are processed which allows overrides on conditional variables. |