From: Simon Glass Date: Fri, 17 Apr 2020 23:51:31 +0000 (-0600) Subject: buildman: Correct operation of -A flag X-Git-Tag: v2020.07-rc1~5^2~18 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=97944d3f7d03c83274d34eccf6a380548a16f444;p=oweals%2Fu-boot.git buildman: Correct operation of -A flag This was broken when -a was removed and unfortunately there are no tests for this. Fix it. Signed-off-by: Simon Glass --- diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 30c030fd16..7ee036824f 100644 --- a/tools/buildman/control.py +++ b/tools/buildman/control.py @@ -207,7 +207,7 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None, sys.exit(col.Color(col.RED, 'No matching boards found')) if options.print_prefix: - err = ShowToolchainInfo(boards, toolchains) + err = ShowToolchainPrefix(boards, toolchains) if err: sys.exit(col.Color(col.RED, err)) return 0