Author: bdubbs Date: 2008-04-11 14:08:03 -0600 (Fri, 11 Apr 2008) New Revision: 8520
Modified: trunk/BOOK/prologue/hostreqs.xml Log: Tweak version-check.sh script Modified: trunk/BOOK/prologue/hostreqs.xml =================================================================== --- trunk/BOOK/prologue/hostreqs.xml 2008-04-11 19:52:46 UTC (rev 8519) +++ trunk/BOOK/prologue/hostreqs.xml 2008-04-11 20:08:03 UTC (rev 8520) @@ -140,13 +140,13 @@ ls -l `which sh` echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3- bison --version | head -n1 -ls -l `which yacc` +f [ -e /usr/bin/yacc ]; then ls -l /usr/bin/yacc; else echo "yacc not found"; fi bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d" " -f1,6- echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2 diff --version | head -n1 find --version | head -n1 gawk --version | head -n1 -ls -l `which awk` +if [ -e /usr/bin/awk ]; then ls -l /usr/bin/awk; else echo "awk not found"; fi gcc --version | head -n1 /lib/libc.so.6 | head -n1 | cut -d" " -f1-7 grep --version | head -n1 -- http://linuxfromscratch.org/mailman/listinfo/lfs-book FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
