lib/package/utils: Improve multiprocess_launch argument passing

The current code for multiple argument passing is horrible. Tweak the
multiprocess_launch function to only convert to a tuple if it isn't already
one, which means we can then use function arguments in a standard way.

(From OE-Core rev: 7c99f90079e722764ebdc30e8d0e781454b3a51a)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2025-02-27 13:39:15 +00:00
parent c92709d4c0
commit 430ed4a884
2 changed files with 5 additions and 10 deletions

View File

@@ -316,7 +316,9 @@ def multiprocess_launch_mp(target, items, max_process, extraargs=None):
items = list(items)
while (items and not errors) or launched:
if not errors and items and len(launched) < max_process:
args = (items.pop(),)
args = items.pop()
if not type(args) is tuple:
args = (args,)
if extraargs is not None:
args = args + extraargs
p = ProcessLaunch(target=target, args=args)