diff options
author | foobar <sniper@php.net> | 2001-05-03 03:41:42 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-05-03 03:41:42 +0000 |
commit | d805c9740f15c26d303f05b3c77683281d5d0f85 (patch) | |
tree | fcf934941eefe0fa298e7cbd6837b52f392a3fd0 /build | |
parent | 0ec7b68462c013a8f53c5bc18c161bf23ef04ca4 (diff) | |
download | php-git-d805c9740f15c26d303f05b3c77683281d5d0f85.tar.gz |
Fix bug #10589
Diffstat (limited to 'build')
-rwxr-xr-x | build/buildcheck.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build/buildcheck.sh b/build/buildcheck.sh index b51d2c6f5b..601045c6fc 100755 --- a/build/buildcheck.sh +++ b/build/buildcheck.sh @@ -16,7 +16,7 @@ # | Sascha Schumann <sascha@schumann.cx> | # +----------------------------------------------------------------------+ # -# $Id: buildcheck.sh,v 1.5 2001-04-04 04:41:01 jason Exp $ +# $Id: buildcheck.sh,v 1.6 2001-05-03 03:41:42 sniper Exp $ # echo "buildconf: checking installation..." @@ -69,7 +69,8 @@ exit 1 fi lt_version=`echo $lt_pversion|sed -e 's/\([a-z]*\)$/.\1/'` IFS=.; set $lt_version; IFS=' ' -if test "$1" -gt "1" || test "$2" -gt "3" || test "$2" = "3" && (test "$3" = "c" || test "$3" -ge "3") + +if test "$1$2$3" -ge "133" || (test "$1" = "1" && test "$2" -ge "4") then echo "buildconf: libtool version $lt_pversion (ok)" else |