summaryrefslogtreecommitdiff
path: root/autoconf/AutoRegen.sh
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-22 03:39:08 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-22 03:39:08 +0000
commit514b4b0a1fc1a652e253227d18d8b1128777163c (patch)
tree4b2583c76c4a2b1561f4d5a7d628379bcbde33cb /autoconf/AutoRegen.sh
parentcac731ecbe6a80e0c607ece2833525a92601db99 (diff)
downloadllvm-514b4b0a1fc1a652e253227d18d8b1128777163c.tar.gz
llvm-514b4b0a1fc1a652e253227d18d8b1128777163c.tar.bz2
llvm-514b4b0a1fc1a652e253227d18d8b1128777163c.tar.xz
Remove automake support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17156 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf/AutoRegen.sh')
-rwxr-xr-xautoconf/AutoRegen.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/autoconf/AutoRegen.sh b/autoconf/AutoRegen.sh
index 01d65d8e84..c3210bf187 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