bootstrap: Detect whether libtoolize is named `glibtoolize' (MacOS)

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1400 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
joerg_wunsch 2017-12-29 22:23:06 +00:00
parent 6a286a90b2
commit 4a8125a817
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2017-12-29 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
* bootstrap: Detect whether libtoolize is named
`glibtoolize' (MacOS)
2017-11-30 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
* configure.ac: Bump version date, due to UPDI addition

View File

@ -13,7 +13,11 @@ set -x
rm -rf autom4te.cache
libtoolize
# MacOS calls it "glibtoolize", everyone else "libtoolize"
# probe for that
LIBTOOLIZE=libtoolize
glibtoolize --version > /dev/null 2>&1 && LIBTOOLIZE=glibtoolize
${LIBTOOLIZE}
${ACLOCAL}
${AUTOHEADER}