Fix bootstrap script to support MacOS glibtoolize oddity.
git-svn-id: svn://svn.berlios.de/openocd/trunk@1779 b42882b7-edfa-0310-969c-e2dbd0fdcd60__archive__
parent
ba66ccea35
commit
3df27e5ce5
26
bootstrap
26
bootstrap
|
@ -1,8 +1,24 @@
|
||||||
aclocal \
|
#!/bin/sh -e
|
||||||
&& autoheader \
|
|
||||||
&& libtoolize --automake \
|
if libtoolize --version >/dev/null 2>&1; then
|
||||||
&& automake --foreign --add-missing --copy \
|
libtoolize="libtoolize"
|
||||||
&& autoconf
|
elif libtoolize --version >/dev/null 2>&1; then
|
||||||
|
libtoolize="glibtoolize"
|
||||||
|
else
|
||||||
|
echo "libtool is required" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# bootstrap the autotools
|
||||||
|
(
|
||||||
|
set -x
|
||||||
|
aclocal
|
||||||
|
autoheader
|
||||||
|
${libtoolize} --automake --copy
|
||||||
|
autoconf
|
||||||
|
autoheader
|
||||||
|
automake --foreign --add-missing --copy
|
||||||
|
)
|
||||||
|
|
||||||
# AM_MAINTAINER_MODE requires SVN users provide --enable-maintainer-mode
|
# AM_MAINTAINER_MODE requires SVN users provide --enable-maintainer-mode
|
||||||
# otherwise the documentation will fail to build due to missing version.texi
|
# otherwise the documentation will fail to build due to missing version.texi
|
||||||
|
|
Loading…
Reference in New Issue