1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-11-03 04:17:18 -05:00

Fix for non-libtool project.

git-svn-id: https://svn.xiph.org/trunk/ezstream@16376 0101bb08-14d6-0310-b084-bc0e0c8e3800
This commit is contained in:
moritz 2009-08-01 15:26:28 +00:00
parent 391ff8e15c
commit 22e82f0cb6

View File

@ -10,6 +10,8 @@ if [ ! -f "./`basename $0`" ]; then
exit 1
fi
USE_LIBTOOL="$(grep AC_PROG_LIBTOOL ./configure.* 2> /dev/null)"
EXTRA=
if [ -d m4 ]; then
EXTRA="-I m4"
@ -25,8 +27,10 @@ AUTOCONF_VERSION="${_ac_version}" AUTOMAKE_VERSION="${_am_version}" \
autoconf || exit 1
AUTOCONF_VERSION="${_ac_version}" AUTOMAKE_VERSION="${_am_version}" \
autoheader || exit 1
if [ -n "${USE_LIBTOOL}" ]; then
AUTOCONF_VERSION="${_ac_version}" AUTOMAKE_VERSION="${_am_version}" \
libtoolize --automake -c -f || exit 1
fi
AUTOCONF_VERSION="${_ac_version}" AUTOMAKE_VERSION="${_am_version}" \
automake -a -c || exit 1