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:
parent
b158c2c3b5
commit
5783a911f1
1 changed files with 5 additions and 1 deletions
|
@ -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 ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue