From 707be18cac45cb252b30115dce09123504c08c54 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Thu, 27 Feb 2025 13:59:19 +0000 Subject: [PATCH] bitbake: lib/bb/build: remove mention of OE_EXTRA_IMPORTS This is an OpenEmbedded-specific variable that is no longer used[1]. [1] oe-core 1f56155e ("base: Switch to use addpylib directive and BB_GLOBAL_PYMODULES") (Bitbake rev: 34bfa55a3c14f5d1d6bb3e31b747906fa7cb99c3) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- bitbake/lib/bb/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index 6e0459d87a..40839a81b5 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py @@ -397,7 +397,7 @@ def create_progress_handler(func, progress, logfile, d): # Use specified regex return bb.progress.OutOfProgressHandler(d, regex=progress.split(':', 1)[1], outfile=logfile) elif progress.startswith("custom:"): - # Use a custom progress handler that was injected via OE_EXTRA_IMPORTS or __builtins__ + # Use a custom progress handler that was injected via other means import functools from types import ModuleType