Changeset 8521

Show
Ignore:
Timestamp:
04/11/08 16:19:24 (8 months ago)
Author:
bdubbs
Message:

More tweaks to version-check.sh

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/BOOK/prologue/hostreqs.xml

    r8520 r8521  
    138138 
    139139bash --version | head -n1 | cut -d" " -f2-4 
    140 ls -l `which sh` 
     140echo "/bin/sh -> `readlink -f /bin/sh`" 
    141141echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3- 
    142142bison --version | head -n1 
    143 f [ -e /usr/bin/yacc ]; then ls -l /usr/bin/yacc; else echo "yacc not found"; fi 
     143if [ -e /usr/bin/yacc ]; then echo "/usr/bin/yacc -> `readlink -f /usr/bin/yacc`";  
     144  else echo "yacc not found"; fi 
    144145bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d" " -f1,6- 
    145146echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2 
     
    147148find --version | head -n1 
    148149gawk --version | head -n1 
    149 if [ -e /usr/bin/awk ]; then ls -l /usr/bin/awk; else echo "awk not found"; fi 
     150if [ -e /usr/bin/awk ]; then echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`";  
     151  else echo "awk not found"; fi 
    150152gcc --version | head -n1 
    151153/lib/libc.so.6 | head -n1 | cut -d" " -f1-7