All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] buildman: fix toolchain priority_list
@ 2014-07-07  0:47 Masahiro Yamada
  2014-07-07 22:19 ` Simon Glass
  0 siblings, 1 reply; 2+ messages in thread
From: Masahiro Yamada @ 2014-07-07  0:47 UTC (permalink / raw)
  To: u-boot

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

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Simon Glass <sjg@chromium.org>
---
 tools/buildman/toolchain.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py
index e392035..1b9771f 100644
--- a/tools/buildman/toolchain.py
+++ b/tools/buildman/toolchain.py
@@ -66,7 +66,7 @@ class Toolchain:
         Returns:
             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',
             '-gentoo-linux-gnu', '-linux-gnueabi', '-le-linux', '-uclinux']
         for prio in range(len(priority_list)):
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] [PATCH] buildman: fix toolchain priority_list
  2014-07-07  0:47 [U-Boot] [PATCH] buildman: fix toolchain priority_list Masahiro Yamada
@ 2014-07-07 22:19 ` Simon Glass
  0 siblings, 0 replies; 2+ messages in thread
From: Simon Glass @ 2014-07-07 22:19 UTC (permalink / raw)
  To: u-boot

On 6 July 2014 18:47, Masahiro Yamada <yamada.m@jp.panasonic.com> wrote:
>
> '-elf' appears twice in the toolchain priority_list.
> The second one is rudundant.
>
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> Cc: Simon Glass <sjg@chromium.org>

Acked-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-07-07 22:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-07  0:47 [U-Boot] [PATCH] buildman: fix toolchain priority_list Masahiro Yamada
2014-07-07 22:19 ` Simon Glass

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.