mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
I fell over a new libtool that starts with a newline so we need to fetch
the two first lines to get the version string. The good news is that older libtools have an empty line after the first so I think this works fine all over...
This commit is contained in:
parent
c41dfc2501
commit
1e9f5845ab
@ -140,7 +140,7 @@ else
|
||||
libtoolize=`findtool $LIBTOOLIZE`
|
||||
fi
|
||||
|
||||
lt_pversion=`$libtool --version 2>/dev/null|head -n 1|sed -e 's/^[^0-9]*//g' -e 's/[- ].*//'`
|
||||
lt_pversion=`$libtool --version 2>/dev/null|head -n 2|sed -e 's/^[^0-9]*//g' -e 's/[- ].*//'`
|
||||
if test -z "$lt_pversion"; then
|
||||
echo "buildconf: libtool not found."
|
||||
echo " You need libtool version $LIBTOOL_WANTED_VERSION or newer installed"
|
||||
|
Loading…
Reference in New Issue
Block a user