From 514b4b0a1fc1a652e253227d18d8b1128777163c Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 22 Oct 2004 03:39:08 +0000 Subject: [PATCH] Remove automake support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17156 91177308-0d34-0410-b5e6-96231b3b80d8 --- autoconf/AutoRegen.sh | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/autoconf/AutoRegen.sh b/autoconf/AutoRegen.sh index 01d65d8e842..c3210bf1876 100755 --- a/autoconf/AutoRegen.sh +++ b/autoconf/AutoRegen.sh @@ -32,12 +32,6 @@ libtool --version | grep '1\.5\.10' > /dev/null if test $? -ne 0 ; then die "Your libtool was not detected as being 1.5.10" fi -if test $with_automake -eq 1 ; then - automake --version | grep 'automake.*1.9.2' > /dev/null - if test $? -ne 0 ; then - die "Your automake was not detected as being 1.9.2" - fi -fi echo "" echo "### NOTE: ############################################################" echo "### If you get *any* warnings from autoconf below you MUST fix the" @@ -49,22 +43,10 @@ echo "######################################################################" echo "" echo "Regenerating aclocal.m4 with aclocal 1.9.2" cwd=`pwd` -if test $with_automake -eq 1 ; then - mv configure.ac .configure.ac.save - cp configure.am configure.ac - cp configure.am ../configure.ac -fi aclocal --force -I $cwd/m4 || die "aclocal failed" echo "Regenerating configure with autoconf 2.59" autoconf --force --warnings=all -o ../$outfile $configfile || die "autoconf failed" cd .. echo "Regenerating config.h.in with autoheader 2.59" autoheader -I autoconf -I autoconf/m4 autoconf/$configfile || die "autoheader failed" -if test $with_automake -eq 1 ; then - echo "Regenerating makefiles with automake 1.9.2" - cp autoconf/aclocal.m4 . - automake --gnu --add-missing --copy --force-missing - cd $cwd - mv .configure.ac.save configure.ac -fi exit 0 -- 2.34.1