diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-03-17 23:59:17 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-03-17 23:59:17 +0100 |
commit | 7372fa2b764069b7eebd7fb718a852c751ae4232 (patch) | |
tree | c57b3fe82c7acbf69848fbf8567c2c8d3723f84f /scripts | |
parent | 9bebf58143b5a5f2d3df7f4931d352427277d008 (diff) | |
download | crosstool-ng-7372fa2b764069b7eebd7fb718a852c751ae4232.tar.gz crosstool-ng-7372fa2b764069b7eebd7fb718a852c751ae4232.tar.bz2 crosstool-ng-7372fa2b764069b7eebd7fb718a852c751ae4232.zip |
scripts: fix dumping config
libelf has been moved to being a companion library, now.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/showSamples.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/showSamples.sh b/scripts/showSamples.sh index e166dc64..a112d792 100755 --- a/scripts/showSamples.sh +++ b/scripts/showSamples.sh @@ -52,8 +52,12 @@ dump_single_sample() { ;; esac printf " %-*s : %s\n" ${t_width} "OS" "${CT_KERNEL}${CT_KERNEL_VERSION:+-}${CT_KERNEL_VERSION}" - if [ -n "${CT_GMP}" -o -n "${CT_MPFR}" \ - -o -n "${CT_PPL}" -o -n "${CT_CLOOG}" -o -n "${CT_MPC}" \ + if [ -n "${CT_GMP}" \ + -o -n "${CT_MPFR}" \ + -o -n "${CT_PPL}" \ + -o -n "${CT_CLOOG}" \ + -o -n "${CT_MPC}" \ + -o -n "${CT_LIBELF}" \ ]; then printf " %-*s :" ${t_width} "Companion libs" complibs=1 @@ -63,6 +67,7 @@ dump_single_sample() { [ -z "${CT_PPL}" ] || printf " ppl-%s" "${CT_PPL_VERSION}" [ -z "${CT_CLOOG}" ] || printf " cloog-ppl-%s" "${CT_CLOOG_VERSION}" [ -z "${CT_MPC}" ] || printf " mpc-%s" "${CT_MPC_VERSION}" + [ -z "${CT_LIBELF}" ] || printf " libelf-%s" "${CT_LIBELF_VERSION}" [ -z "${complibs}" ] || printf "\n" printf " %-*s : %s\n" ${t_width} "binutils" "binutils-${CT_BINUTILS_VERSION}" printf " %-*s : %s" ${t_width} "C compiler" "${CT_CC}-${CT_CC_VERSION} (C" @@ -76,7 +81,6 @@ dump_single_sample() { printf ")\n" printf " %-*s : %s\n" ${t_width} "C library" "${CT_LIBC}${CT_LIBC_VERSION:+-}${CT_LIBC_VERSION}" printf " %-*s :" ${t_width} "Tools" - [ "${CT_TOOL_libelf}" ] && printf " libelf-${CT_LIBELF_VERSION}" [ "${CT_TOOL_sstrip}" ] && printf " sstrip" [ "${CT_DEBUG_dmalloc}" ] && printf " dmalloc-${CT_DMALLOC_VERSION}" [ "${CT_DEBUG_duma}" ] && printf " duma-${CT_DUMA_VERSION}" |