1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

build: Adjust autogen.sh to 'libtoolize' name on Darwin.

Reported by Daniel Llorens.

* autogen.sh: Use 'glibtoolize' on Darwin.
This commit is contained in:
Ludovic Courtès 2014-10-06 15:22:44 +02:00
parent 5af307de43
commit 449be2a5e5

View file

@ -15,7 +15,15 @@ autoconf --version
echo "" echo ""
automake --version automake --version
echo "" echo ""
libtoolize --version
# Typical MacOS X installations rename 'libtoolize' to 'glibtoolize', so
# adjust to that.
if test "`uname -s`" = "Darwin"; then
glibtoolize --version
else
libtoolize --version
fi
echo "" echo ""
${M4:-m4} --version ${M4:-m4} --version
echo "" echo ""