From 2e2e0fba608760de2eea7f998de0f7733c9ddb73 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 12 May 2003 13:05:11 +0000 Subject: [PATCH] no more complaining when I have 1.5 and it tests for 1.4.2 --- buildconf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/buildconf b/buildconf index a189cf5c7..f719d6db2 100755 --- a/buildconf +++ b/buildconf @@ -97,8 +97,10 @@ if test "$1" = "$LIBTOOL_WANTED_MAJOR"; then if test "$2" -lt "$LIBTOOL_WANTED_MINOR"; then lt_status="bad" elif test ! -z "$LIBTOOL_WANTED_PATCH"; then - if test "$3" -lt "$LIBTOOL_WANTED_PATCH"; then - lt_status="bad" + if test -n "$3"; then + if test "$3" -lt "$LIBTOOL_WANTED_PATCH"; then + lt_status="bad" + fi fi fi fi