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:
parent
6e57e225e7
commit
82dc3bf679
|
@ -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>
|
2017-11-30 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
* configure.ac: Bump version date, due to UPDI addition
|
* configure.ac: Bump version date, due to UPDI addition
|
||||||
|
|
|
@ -13,7 +13,11 @@ set -x
|
||||||
|
|
||||||
rm -rf autom4te.cache
|
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}
|
${ACLOCAL}
|
||||||
${AUTOHEADER}
|
${AUTOHEADER}
|
||||||
|
|
Loading…
Reference in New Issue