diff mbox series

lib/bb/build: remove mention of OE_EXTRA_IMPORTS

Message ID 20250227135919.3440918-1-ross.burton@arm.com
State Accepted, archived
Commit 34bfa55a3c14f5d1d6bb3e31b747906fa7cb99c3
Headers show
Series lib/bb/build: remove mention of OE_EXTRA_IMPORTS | expand

Commit Message

Ross Burton Feb. 27, 2025, 1:59 p.m. UTC
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")

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 bitbake/lib/bb/build.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 6e0459d87ab..40839a81b5b 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