Displaying 1 result from an estimated 1 matches for "aclocal17".
Did you mean:
aclocal15
2004 Jul 19
0
Ogg Vorbis CVS (ok,
...[0-9]\.[0-9]\).*/\1/"
VERSIONMKINT="sed -e s/[^0-9]//"
-
+
# do we need automake?
if test -r Makefile.am; then
AM_NEEDED=`fgrep AUTOMAKE_OPTIONS Makefile.am | $VERSIONGREP`
if test -z $AM_NEEDED; then
echo -n "checking for automake... "
- AUTOMAKE=automake17
- ACLOCAL=aclocal17
- if ($AUTOMAKE --version < /dev/null > /dev/null 2>&1); then
+ AUTOMAKE=${AUTOMAKE:-automake}
+ ACLOCAL=${ACLOCAL:-aclocal}
+ if (${AUTOMAKE} --version < /dev/null > /dev/null 2>&1); then
echo "no"
AUTOMAKE=
else
@@ -38,19 +46,20 @@
fi
else
echo -n &...