summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2001-05-05 15:33:49 +0000
committerSascha Schumann <sas@php.net>2001-05-05 15:33:49 +0000
commite1ddd48bd48634597255dadde17ad732105df0bd (patch)
treebf93b457dcfa6ca255fcb71f1b747c8fc590d123 /build
parent080fdabc85ae5fc7f8938b19a56ce4512ad35fa1 (diff)
downloadphp-git-e1ddd48bd48634597255dadde17ad732105df0bd.tar.gz
Fix libtool check
Submitted by: brisse@ping.dk
Diffstat (limited to 'build')
-rwxr-xr-xbuild/buildcheck.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/buildcheck.sh b/build/buildcheck.sh
index 601045c6fc..4776755bac 100755
--- a/build/buildcheck.sh
+++ b/build/buildcheck.sh
@@ -16,7 +16,7 @@
# | Sascha Schumann <sascha@schumann.cx> |
# +----------------------------------------------------------------------+
#
-# $Id: buildcheck.sh,v 1.6 2001-05-03 03:41:42 sniper Exp $
+# $Id: buildcheck.sh,v 1.7 2001-05-05 15:33:49 sas Exp $
#
echo "buildconf: checking installation..."
@@ -70,7 +70,7 @@ fi
lt_version=`echo $lt_pversion|sed -e 's/\([a-z]*\)$/.\1/'`
IFS=.; set $lt_version; IFS=' '
-if test "$1$2$3" -ge "133" || (test "$1" = "1" && test "$2" -ge "4")
+if test "$1" -gt "1" || test "$2" -gt "3" || (test "$2" = "3" && (test "$3" = "c" || test "$3" -ge "3"))
then
echo "buildconf: libtool version $lt_pversion (ok)"
else