Fixed mininum Gzip2 and Binutils required versions.

This commit is contained in:
Manuel Canales Esparcia 2006-09-29 16:52:39 +00:00
parent e590acb160
commit 5e28ef3b01

View file

@ -73,10 +73,10 @@ check_prerequisites() { #
libcVer="`/lib/libc.so.6 | head -n1`"
libcVer="${libcVer##*version }"
check_version "2.2.5" ${libcVer%%,*} "GLIBC"
check_version "1.12" "`ld --version | head -n1 | cut -d\" \" -f4`" "BINUTILS"
check_version "2.12" "`ld --version | head -n1 | cut -d\" \" -f4`" "BINUTILS"
check_version "1.14" "`tar --version | head -n1 | cut -d \" \" -f4`" "TAR"
bzip2Ver="`bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d\" \" -f8`"
check_version "1.0.3" "${bzip2Ver%%,*}" "BZIP2"
check_version "1.0.2" "${bzip2Ver%%,*}" "BZIP2"
check_version "5.0" "`chown --version | head -n1 | cut -d\")\" -f2`" "COREUTILS"
check_version "2.8" "`diff --version | head -n1 | cut -d \" \" -f4`" "DIFF"
check_version "4.1.20" "`find --version | head -n1 | cut -d \" \" -f4`" "FIND"