diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-10-06 15:22:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-10-06 15:23:10 +0200 |
commit | 449be2a5e5670b8ae1e02aaaddbd4425a8785205 (patch) | |
tree | 928c3d41cd9a384656a1f8452dae48bb73245db2 | |
parent | 5af307de43e4b65eec7f235b48a8908f2a00f134 (diff) | |
download | guile-449be2a5e5670b8ae1e02aaaddbd4425a8785205.tar.gz |
build: Adjust autogen.sh to 'libtoolize' name on Darwin.
Reported by Daniel Llorens.
* autogen.sh: Use 'glibtoolize' on Darwin.
-rwxr-xr-x | autogen.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index af1ade60d..2e39fb5d8 100755 --- a/autogen.sh +++ b/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 "" |