summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-04-17 17:51:31 -0600
committerSimon Glass <sjg@chromium.org>2020-04-26 14:24:08 -0600
commit97944d3f7d03c83274d34eccf6a380548a16f444 (patch)
tree38fcb320d1a7953c4e35c9a555ae5a5419a9f60f /tools
parent55a98d96bd740ecff5d26a0253eed1d5341c614e (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.py2
1 files changed, 1 insertions, 1 deletions
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