From ac82ea3e8d778dbaca051804076bfa96a50c1aa4 Mon Sep 17 00:00:00 2001 From: inxi-svn Date: Fri, 24 Jun 2011 18:11:55 +0000 Subject: [PATCH] tweaking the output slightly --- inxi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inxi b/inxi index c5542b8..ff78395 100755 --- a/inxi +++ b/inxi @@ -7484,7 +7484,7 @@ print_system_data() if [[ $B_EXTRA_DATA == 'true' ]];then gcc_string=$( get_gcc_version ) if [[ -n $gcc_string ]];then - gcc_string="${C1}gcc${C2} $gcc_string, " + gcc_string=", ${C1}gcc${C2} $gcc_string" fi fi # check for 64 bit first @@ -7493,7 +7493,7 @@ print_system_data() else bits="32" fi - bits="(${gcc_string}${bits} bit)" + bits=" (${bits} bit${gcc_string})" if [[ $B_SHOW_HOST == 'true' ]];then if [[ -z $HOSTNAME ]];then if [[ -n $( type p hostname ) ]];then @@ -7506,7 +7506,7 @@ print_system_data() host_string="${C1}Host${C2} $host_name " system_data=$( create_print_line "System:" "${C1}Host${C2} $host_name ${C1}Kernel${C2}" ) fi - host_kernel_string="$host_string${C1}Kernel${C2} $current_kernel $bits " + host_kernel_string="$host_string${C1}Kernel${C2} $current_kernel$bits " if [[ $( calculate_line_length "$host_kernel_string$de_distro_string" ) -lt $LINE_MAX ]];then system_data="$host_kernel_string$de_distro_string" system_data=$( create_print_line "System:" "$system_data" )