diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2025-08-12 11:39:43 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-08-14 10:31:10 +0100 |
commit | 74befedd6610e08a88beb4889d47fdedeaec6a4e (patch) | |
tree | fc8205f3f871fe3d9225f3b3384f63f49d24459d /meta/lib/oe/utils.py | |
parent | 9f694e7ab4546d70db441667e285e62b3762d532 (diff) | |
download | poky-74befedd6610e08a88beb4889d47fdedeaec6a4e.tar.gz |
lib/oe/utils: use multiprocessing from bb
Fixes build with python-3.14
It was added to bitbake in 62be9113d98fccb347c6aa0a10d5c4ee2857f8b6
and oe-core now requires latest bitbake already, so we can use this.
[YOCTO #15858]
(From OE-Core rev: 75b39bf4b0cbf0884ce5c7209f3ae9420a86316e)
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Reviewed-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/utils.py')
-rw-r--r-- | meta/lib/oe/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py index 8aa15373f1..0128ee411d 100644 --- a/meta/lib/oe/utils.py +++ b/meta/lib/oe/utils.py | |||
@@ -5,11 +5,11 @@ | |||
5 | # | 5 | # |
6 | 6 | ||
7 | import subprocess | 7 | import subprocess |
8 | import multiprocessing | ||
9 | import traceback | 8 | import traceback |
10 | import errno | 9 | import errno |
11 | 10 | ||
12 | import bb.parse | 11 | import bb.parse |
12 | from bb import multiprocessing | ||
13 | 13 | ||
14 | def read_file(filename): | 14 | def read_file(filename): |
15 | try: | 15 | try: |