From f39be819f8ace79e7783707ae7ad17afdbf594d1 Mon Sep 17 00:00:00 2001 From: George Boudreau Date: Fri, 29 Sep 2006 19:22:58 +0000 Subject: [PATCH] Host system requirements (prerequisites), added test for gzip --- common/func_check_version.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/func_check_version.sh b/common/func_check_version.sh index b2e2e2c..f158392 100644 --- a/common/func_check_version.sh +++ b/common/func_check_version.sh @@ -82,7 +82,8 @@ check_prerequisites() { # check_version "4.1.20" "`find --version | head -n1 | cut -d \" \" -f4`" "FIND" check_version "3.0" "`gawk --version | head -n1 | cut -d \" \" -f3`" "GAWK" check_version "2.5" "`grep --version | head -n1 | cut -d \" \" -f4`" "GREP" -# #echo -n "gzip: "; gzip --version | head -n1 + gzipVer=$(gzip --version 2>&1 | head -n1 | cut -d" " -f2) + check_version "1.2.4" "$gzipVer" "GZIP" check_version "3.79.1" "`make --version | head -n1 | cut -d \" \" -f3`" "MAKE" check_version "2.5.4" "`patch --version | head -n1 | cut -d \" \" -f2`" "PATCH" check_version "3.0.2" "`sed --version | head -n1 | cut -d \" \" -f4`" "SED"