mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
9acbffc2dd
There are a few benefits to this, but the main reason is consistency and me completely understanding what's going on. Regressions are not expected, but wouldn't surprise either ... this needs lots of testing. git-svn-id: https://svn.xiph.org/trunk/ezstream@15776 0101bb08-14d6-0310-b084-bc0e0c8e3800
21 lines
600 B
Bash
Executable File
21 lines
600 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
|
|
|
|
if [ ! -f "./`basename $0`" ]; then
|
|
echo "Please chdir into `basename $0`'s directory first."
|
|
exit 1
|
|
fi
|
|
|
|
EXTRA=
|
|
if [ -d /usr/local/share/aclocal ]; then
|
|
EXTRA="-I /usr/local/share/aclocal"
|
|
fi
|
|
|
|
AUTOCONF_VERSION=2.61 AUTOMAKE_VERSION=1.9 aclocal -I m4 ${EXTRA}
|
|
AUTOCONF_VERSION=2.61 AUTOMAKE_VERSION=1.9 autoconf
|
|
AUTOCONF_VERSION=2.61 AUTOMAKE_VERSION=1.9 autoheader
|
|
# AUTOCONF_VERSION=2.61 AUTOMAKE_VERSION=1.9 libtoolize --automake -c -f
|
|
AUTOCONF_VERSION=2.61 AUTOMAKE_VERSION=1.9 automake -a -c
|
|
rm -r autom4te.cache
|