check automake version (submitted by Lane Schwartz)

git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1333 1f5c12ca-751b-0410-a591-d2e778427230
This commit is contained in:
hieuhoang1972 2007-03-31 15:18:01 +00:00
parent c17316495c
commit 16e031f1cf

View File

@ -5,12 +5,28 @@ function die () {
exit 1
}
echo "Calling aclocal..."
aclocal || die "aclocal failed"
echo "Calling autoconf..."
autoconf || die "autoconf failed"
echo "Calling automake..."
automake || die "automake failed"
if [ -z "$ACLOCAL" ]
then
ACLOCAL=`which aclocal`
fi
if [ -z "$AUTOMAKE" ]
then
AUTOMAKE=`which automake`
fi
if [ -z "$AUTOCONF" ]
then
AUTOCONF=`which autoconf`
fi
echo "Calling $ACLOCAL..."
$ACLOCAL || die "aclocal failed"
echo "Calling $AUTOCONF..."
$AUTOCONF || die "autoconf failed"
echo "Calling $AUTOMAKE..."
$AUTOMAKE || die "automake failed"
echo
echo "You should now be able to configure and build:"