mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
buildman: Fix repeating board list with -l
Ensure that we don't print duplicate board names when -l is used. Change-Id: I56adb138fc18f772ba61eba0fa194cdd7bc7efc6 Signed-off-by: Simon Glass <sjg@chromium.org> Reported-by: Albert Aribaud <albert.u.boot@aribaud.net>
This commit is contained in:
parent
571bdf16a7
commit
be338a5149
1 changed files with 2 additions and 1 deletions
|
@ -918,7 +918,8 @@ class Builder:
|
|||
if self._list_error_boards:
|
||||
names = []
|
||||
for board in line_boards[line]:
|
||||
names.append(board.target)
|
||||
if not board.target in names:
|
||||
names.append(board.target)
|
||||
names_str = '(%s) ' % ','.join(names)
|
||||
else:
|
||||
names_str = ''
|
||||
|
|
Loading…
Reference in a new issue