Skip to content
Snippets Groups Projects
Commit 2e2e0fba authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

no more complaining when I have 1.5 and it tests for 1.4.2

parent 4a5139e3
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment