changed it back, heh

This commit is contained in:
inxi-svn 2011-06-24 18:01:08 +00:00
parent 1e83ba94f5
commit 01bb3f205c

8
inxi
View file

@ -7484,16 +7484,16 @@ print_system_data()
if [[ $B_EXTRA_DATA == 'true' ]];then if [[ $B_EXTRA_DATA == 'true' ]];then
gcc_string=$( get_gcc_version ) gcc_string=$( get_gcc_version )
if [[ -n $gcc_string ]];then if [[ -n $gcc_string ]];then
gcc_string="${C1}gcc${C2} $gcc_string; " gcc_string="${C1}gcc${C2} $gcc_string, "
fi fi
fi fi
# check for 64 bit first # check for 64 bit first
if [[ -n $( uname -m | grep -o 'x86_64' ) ]];then if [[ -n $( uname -m | grep -o 'x86_64' ) ]];then
bits="64 bit" bits="64"
else else
bits="32 bit" bits="32"
fi fi
bits="(${gcc_string}${bits})" bits="(${gcc_string}${bits} bit)"
if [[ $B_SHOW_HOST == 'true' ]];then if [[ $B_SHOW_HOST == 'true' ]];then
if [[ -z $HOSTNAME ]];then if [[ -z $HOSTNAME ]];then
if [[ -n $( type p hostname ) ]];then if [[ -n $( type p hostname ) ]];then