diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-01-03 18:33:23 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-01-03 18:33:23 +0100 |
commit | 75cb688486da3ea2326d9a9f7f84031df719811b (patch) | |
tree | 12dce53ac2f164c4bc5a5da9924480dba4d20db4 /scripts/showSamples.sh | |
parent | 24711bbfbe462b49724b5d0ff17c4dc919859efc (diff) | |
download | crosstool-ng-75cb688486da3ea2326d9a9f7f84031df719811b.tar.gz crosstool-ng-75cb688486da3ea2326d9a9f7f84031df719811b.tar.bz2 crosstool-ng-75cb688486da3ea2326d9a9f7f84031df719811b.zip |
samples: fix displaying samples
Diffstat (limited to 'scripts/showSamples.sh')
-rwxr-xr-x | scripts/showSamples.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/showSamples.sh b/scripts/showSamples.sh index 002b4c4f..33e30816 100755 --- a/scripts/showSamples.sh +++ b/scripts/showSamples.sh @@ -30,7 +30,7 @@ dump_single_sample() { . "${sample_top}/samples/${sample}/crosstool.config" if [ -z "${wiki}" ]; then t_width=13 - printf " %-*s [%s" ${width} "${sample}" "${sample_type}" + printf "%-*s [%s" ${width} "${sample}" "${sample_type}" [ -f "${sample_top}/samples/${sample}/broken" ] && printf "B" || printf " " [ "${CT_EXPERIMENTAL}" = "y" ] && printf "X" || printf " " echo "]" @@ -152,7 +152,7 @@ fi for sample in "${@}"; do ( dump_single_sample ${opt} ${width} "${sample}" ) -done |LC_ALL=C sort -k2 +done if [ "${opt}" = -w ]; then printf "^ Total: ${#@} samples || **X**: sample uses features marked as being EXPERIMENTAL.\\\\\\\\ **B**: sample is curently BROKEN. |||||||||||||" |