diff options
author | Alexey Neyman <stilor@att.net> | 2017-05-14 12:27:53 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-05-14 15:23:41 -0700 |
commit | 8e7947cb35a24e8c021848a0951314cc1c8851f7 (patch) | |
tree | 3ce6ab1a41311ef32f331b694eeb4ab6517483c8 /scripts/showSamples.sh | |
parent | dab327ed06800bf6609aa1b2e370e37e87ce9e80 (diff) | |
download | crosstool-ng-8e7947cb35a24e8c021848a0951314cc1c8851f7.tar.gz crosstool-ng-8e7947cb35a24e8c021848a0951314cc1c8851f7.tar.bz2 crosstool-ng-8e7947cb35a24e8c021848a0951314cc1c8851f7.zip |
Print gcc version in the same way as the rest
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/showSamples.sh')
-rwxr-xr-x | scripts/showSamples.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/showSamples.sh b/scripts/showSamples.sh index f3a21d25..e60e29fc 100755 --- a/scripts/showSamples.sh +++ b/scripts/showSamples.sh @@ -101,7 +101,7 @@ dump_single_sample() { cc=$(echo ${CT_CC} | ${awk} '{ print toupper($0)}') version=$(eval echo \${CT_CC_${cc}_VERSION}) compiler=$(echo $cc | ${awk} '{print tolower($0)}') - printf " $compiler | $version" + printf " $compiler-$version" printf "\n" printf " %-*s : %s" ${width} "Languages" "C" [ "${CT_CC_LANG_CXX}" = "y" ] && printf ",C++" |