Skip to content
Snippets Groups Projects
Commit 8708267f authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Simon Glass
Browse files

buildman: fix toolchain priority_list


'-elf' appears twice in the toolchain priority_list.
The second one is rudundant.

Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
parent 1826a18d
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,7 @@ class Toolchain: ...@@ -66,7 +66,7 @@ class Toolchain:
Returns: Returns:
Priority of toolchain, 0=highest, 20=lowest. Priority of toolchain, 0=highest, 20=lowest.
""" """
priority_list = ['-elf', '-unknown-linux-gnu', '-linux', '-elf', priority_list = ['-elf', '-unknown-linux-gnu', '-linux',
'-none-linux-gnueabi', '-uclinux', '-none-eabi', '-none-linux-gnueabi', '-uclinux', '-none-eabi',
'-gentoo-linux-gnu', '-linux-gnueabi', '-le-linux', '-uclinux'] '-gentoo-linux-gnu', '-linux-gnueabi', '-le-linux', '-uclinux']
for prio in range(len(priority_list)): for prio in range(len(priority_list)):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment