Fixed mininum Gzip2 and Binutils required versions.
This commit is contained in:
parent
e590acb160
commit
5e28ef3b01
1 changed files with 5 additions and 5 deletions
|
@ -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"
|
||||
|
|
Reference in a new issue