From 18f7bb1f381689addfe56e0e6eae3bdce79deaea Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Mon, 19 Mar 2007 21:31:30 +0000 Subject: [PATCH] I don't think we really need automake 1.9. Lets try and see if 1.7 will work (I tried it yesterday and it seemed to work) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4670 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index e791f14488..d1d5e236c5 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -41,9 +41,9 @@ echo " to build FreeSWITCH from SVN." exit 1 fi IFS=.; set $am_version; IFS=' ' -if test "$1" = "1" -a "$2" -lt "9"; then +if test "$1" = "1" -a "$2" -lt "7"; then echo "bootstrap: automake version $am_version found." -echo " You need automake version 1.9 or newer installed" +echo " You need automake version 1.7 or newer installed" echo " to build FreeSWITCH from SVN." exit 1 else