X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=autoconf%2FAutoRegen.sh;h=86a26d925fc40495948a0ddb3219d8dcb4be2c3f;hb=dcdd1c138cc6e10a7db98002f367331b1446f17d;hp=7809667ac5f1ccda88bfa85c702e8af7fdb8a245;hpb=68cecbde18da8a8fd84e03ef346a308019975f8a;p=oota-llvm.git diff --git a/autoconf/AutoRegen.sh b/autoconf/AutoRegen.sh index 7809667ac5f..86a26d925fc 100755 --- a/autoconf/AutoRegen.sh +++ b/autoconf/AutoRegen.sh @@ -13,11 +13,10 @@ clean() { ### These variables specify the tool versions we want to use. ### Periods should be escaped with backslash for use by grep. ### -### If you update these, please also update docs/GettingStarted.html +### If you update these, please also update docs/GettingStarted.rst want_autoconf_version='2\.60' want_autoheader_version=$want_autoconf_version want_aclocal_version='1\.9\.6' -want_libtool_version='1\.5\.22' ### END NOTE ######################################################### outfile=configure @@ -26,7 +25,6 @@ configfile=configure.ac want_autoconf_version_clean=$(clean $want_autoconf_version) want_autoheader_version_clean=$(clean $want_autoheader_version) want_aclocal_version_clean=$(clean $want_aclocal_version) -want_libtool_version_clean=$(clean $want_libtool_version) test -d autoconf && test -f autoconf/$configfile && cd autoconf test -f $configfile || die "Can't find 'autoconf' dir; please cd into it first" @@ -36,8 +34,6 @@ aclocal --version | grep '^aclocal.*'$want_aclocal_version > /dev/null test $? -eq 0 || die "Your aclocal was not detected as being $want_aclocal_version_clean" autoheader --version | grep '^autoheader.*'$want_autoheader_version > /dev/null test $? -eq 0 || die "Your autoheader was not detected as being $want_autoheader_version_clean" -libtool --version | grep $want_libtool_version > /dev/null -test $? -eq 0 || die "Your libtool was not detected as being $want_libtool_version_clean" echo "" echo "### NOTE: ############################################################" echo "### If you get *any* warnings from autoconf below you MUST fix the"