mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 11:10:32 +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:
parent
5af307de43
commit
449be2a5e5
1 changed files with 9 additions and 1 deletions
10
autogen.sh
10
autogen.sh
|
@ -15,7 +15,15 @@ autoconf --version
|
|||
echo ""
|
||||
automake --version
|
||||
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 ""
|
||||
${M4:-m4} --version
|
||||
echo ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue