[llvm-commits] CVS: llvm/autoconf/AutoRegen.sh

Reid Spencer reid at x10sys.com
Tue Oct 12 17:19:09 PDT 2004



Changes in directory llvm/autoconf:

AutoRegen.sh updated: 1.8 -> 1.9
---
Log message:

Harden the version requirements to the set that actually works after three
days of trying to figure it out. Despite some developer's penchant for 
relaxing the tool versions, this just isn't possible. Only certain versions
work with certain other versions.


---
Diffs of the changes:  (+3 -3)

Index: llvm/autoconf/AutoRegen.sh
diff -u llvm/autoconf/AutoRegen.sh:1.8 llvm/autoconf/AutoRegen.sh:1.9
--- llvm/autoconf/AutoRegen.sh:1.8	Sun Oct 10 14:09:33 2004
+++ llvm/autoconf/AutoRegen.sh	Tue Oct 12 19:18:58 2004
@@ -22,13 +22,13 @@
 fi
 aclocal --version | egrep '1\.9\.2' > /dev/null
 if test $? -ne 0 ; then
-  die "Your aclocal was not detected as being 1.9.1"
+  die "Your aclocal was not detected as being 1.9.2"
 fi
 autoheader --version | egrep '2\.59' > /dev/null
 if test $? -ne 0 ; then
   die "Your autoheader was not detected as being 2.59"
 fi
-libtool --version | grep '1.5.10' > /dev/null
+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
@@ -47,7 +47,7 @@
 echo "### present. You should get just three 'Regenerating..' lines."
 echo "######################################################################"
 echo ""
-echo "Regenerating aclocal.m4 with aclocal"
+echo "Regenerating aclocal.m4 with aclocal 1.9.2"
 cwd=`pwd`
 if test $with_automake -eq 1 ; then
   mv configure.ac .configure.ac.save






More information about the llvm-commits mailing list