mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-10-05 04:31:44 +02:00
buildman: Exit after reading toolchain
Recent refactoring changed buildman to continue operation after fetching a toolchain. Fix this. Fixes: b8680646521 ("bulidman: Move toolchain handling to a function") Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
b49662083f
commit
1c81e0808b
@ -610,6 +610,9 @@ def do_buildman(args, toolchains=None, make_func=None, brds=None,
|
|||||||
toolchains = get_toolchains(toolchains, col, args.override_toolchain,
|
toolchains = get_toolchains(toolchains, col, args.override_toolchain,
|
||||||
args.fetch_arch, args.list_tool_chains,
|
args.fetch_arch, args.list_tool_chains,
|
||||||
args.verbose)
|
args.verbose)
|
||||||
|
if isinstance(toolchains, int):
|
||||||
|
return toolchains
|
||||||
|
|
||||||
output_dir = setup_output_dir(
|
output_dir = setup_output_dir(
|
||||||
args.output_dir, args.work_in_output, args.branch,
|
args.output_dir, args.work_in_output, args.branch,
|
||||||
args.no_subdirs, col, clean_dir)
|
args.no_subdirs, col, clean_dir)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user