# HG changeset patch # User "Yann E. MORIN" # Date 1356609212 -3600 # Node ID f6740f9e42de5f72f7d82e99d86f0607a431f180 # Parent b286c7993be51ed1137fae57e4c3b0cbef0d0ab7 scripts/addToolsVersion: handle elf2flt The one was missing from the list. It is very improbable that we ever need it, as elf2flt does no release, and we always get it from CVS head. But for the sake of consistency, we just add it. Signed-off-by: "Yann E. MORIN" diff -r b286c7993be5 -r f6740f9e42de scripts/addToolVersion.sh --- a/scripts/addToolVersion.sh Thu Dec 27 12:45:22 2012 +0100 +++ b/scripts/addToolVersion.sh Thu Dec 27 12:53:32 2012 +0100 @@ -189,6 +189,7 @@ # Tools: --gcc) EXP=; OBS=; cat=CC; tool=gcc; tool_prefix=cc; dot2suffix=;; --binutils) EXP=; OBS=; cat=BINUTILS; tool=binutils; tool_prefix=binutils; dot2suffix=;; + --elf2flt) EXP=; OBS=; cat=BINUTILS; tool=binutils; tool_prefix=binutils; dot2suffix=.2;; --glibc) EXP=; OBS=; cat=LIBC_GLIBC; tool=glibc; tool_prefix=libc; dot2suffix=;; --eglibc) EXP=; OBS=; cat=LIBC_EGLIBC; tool=eglibc; tool_prefix=libc; dot2suffix=;; --uClibc) EXP=; OBS=; cat=LIBC_UCLIBC; tool=uClibc; tool_prefix=libc; dot2suffix=;;