Fix check for libtool in autogen.sh

libtoolize is named glibtoolize on some macOS systems.
This commit is contained in:
Nick Wellnhofer 2022-01-16 13:56:17 +01:00
parent 343bf0d39b
commit ff05c94a6e

View File

@ -16,7 +16,8 @@ DIE=0
DIE=1 DIE=1
} }
(libtoolize --version) < /dev/null > /dev/null 2>&1 || { (libtoolize --version) < /dev/null > /dev/null 2>&1 ||
(glibtoolize --version) < /dev/null > /dev/null 2>&1 || {
echo echo
echo "You must have libtool installed to compile libxml." echo "You must have libtool installed to compile libxml."
echo "Download the appropriate package for your distribution," echo "Download the appropriate package for your distribution,"