diff options
author | Simon Glass | 2020-04-17 17:51:31 -0600 |
---|---|---|
committer | Simon Glass | 2020-04-26 14:24:08 -0600 |
commit | 97944d3f7d03c83274d34eccf6a380548a16f444 (patch) | |
tree | 38fcb320d1a7953c4e35c9a555ae5a5419a9f60f /tools | |
parent | 55a98d96bd740ecff5d26a0253eed1d5341c614e (diff) |
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 <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/buildman/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 30c030fd16e..7ee036824f6 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 |