mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 14:32:38 +03:00
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:
parent
c17316495c
commit
16e031f1cf
@ -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:"
|
||||
|
Loading…
Reference in New Issue
Block a user