diff options
author | Ross Burton <ross.burton@arm.com> | 2025-02-27 13:59:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-27 15:21:10 +0000 |
commit | 707be18cac45cb252b30115dce09123504c08c54 (patch) | |
tree | d7a616ffd004c1ca8b87864f9b63c26294ace5a4 /bitbake/lib | |
parent | e1836b205a2716e85f36346762805e2e505a5eb6 (diff) | |
download | poky-707be18cac45cb252b30115dce09123504c08c54.tar.gz |
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 <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
397 | # Use specified regex | 397 | # Use specified regex |
398 | return bb.progress.OutOfProgressHandler(d, regex=progress.split(':', 1)[1], outfile=logfile) | 398 | return bb.progress.OutOfProgressHandler(d, regex=progress.split(':', 1)[1], outfile=logfile) |
399 | elif progress.startswith("custom:"): | 399 | elif progress.startswith("custom:"): |
400 | # Use a custom progress handler that was injected via OE_EXTRA_IMPORTS or __builtins__ | 400 | # Use a custom progress handler that was injected via other means |
401 | import functools | 401 | import functools |
402 | from types import ModuleType | 402 | from types import ModuleType |
403 | 403 | ||