diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2008-04-11 22:19:24 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2008-04-11 22:19:24 +0000 |
commit | 3f8f0edef3bd34c27c2e9ac0861182fdc9a898b4 (patch) | |
tree | 16844c2b7e98fa044ec84370f51c744aa09cf98b /prologue | |
parent | d439604a8b756dcd8d9465eb31ccfc8ac9008c68 (diff) |
More tweaks to version-check.sh
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8521 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'prologue')
-rw-r--r-- | prologue/hostreqs.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/prologue/hostreqs.xml b/prologue/hostreqs.xml index ad8c85e2e..21d2ea71f 100644 --- a/prologue/hostreqs.xml +++ b/prologue/hostreqs.xml @@ -137,16 +137,18 @@ export LC_ALL=C # Simple script to list version numbers of critical development tools bash --version | head -n1 | cut -d" " -f2-4 -ls -l `which sh` +echo "/bin/sh -> `readlink -f /bin/sh`" echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3- bison --version | head -n1 -f [ -e /usr/bin/yacc ]; then ls -l /usr/bin/yacc; else echo "yacc not found"; fi +if [ -e /usr/bin/yacc ]; then echo "/usr/bin/yacc -> `readlink -f /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 -if [ -e /usr/bin/awk ]; then ls -l /usr/bin/awk; else echo "awk not found"; fi +if [ -e /usr/bin/awk ]; then echo "/usr/bin/awk -> `readlink -f /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 |