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

Fix autogen.sh for Mac OS X.

* autogen.sh: If uname indicates that the OS is Darwin, run "glibtool"
  instead of "libtool" for the version number check.
This commit is contained in:
Ken Raeburn 2009-10-29 13:06:35 -04:00
parent b158c2c3b5
commit 5783a911f1

View file

@ -15,7 +15,11 @@ autoconf --version
echo ""
automake --version
echo ""
libtool --version
if test "`uname -s`" = Darwin; then
glibtool --version
else
libtool --version
fi
echo ""
${M4:-/usr/bin/m4} --version
echo ""