From 16e031f1cf464fc2e7773ec8c1024c6d1bd373b4 Mon Sep 17 00:00:00 2001 From: hieuhoang1972 Date: Sat, 31 Mar 2007 15:18:01 +0000 Subject: [PATCH] check automake version (submitted by Lane Schwartz) git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@1333 1f5c12ca-751b-0410-a591-d2e778427230 --- regenerate-makefiles.sh | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/regenerate-makefiles.sh b/regenerate-makefiles.sh index 75d48e86b..8d78b06a5 100755 --- a/regenerate-makefiles.sh +++ b/regenerate-makefiles.sh @@ -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:"