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

Reid Spencer reid at x10sys.com
Wed Dec 29 11:13:07 PST 2004



Changes in directory llvm-test/autoconf:

AutoRegen.sh updated: 1.3 -> 1.4
---
Log message:

Use the --force and --warnings=all options on aclocal and autoconf to
ensure that the configure script is completely rebuilt and that any 
compatibility warnings are generated.


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

Index: llvm-test/autoconf/AutoRegen.sh
diff -u llvm-test/autoconf/AutoRegen.sh:1.3 llvm-test/autoconf/AutoRegen.sh:1.4
--- llvm-test/autoconf/AutoRegen.sh:1.3	Tue Sep  7 11:16:59 2004
+++ llvm-test/autoconf/AutoRegen.sh	Wed Dec 29 13:12:55 2004
@@ -23,8 +23,8 @@
 fi
 echo "Regenerating aclocal.m4 with aclocal"
 rm -f aclocal.m4
-aclocal -I $cwd/m4 -I $llvm_m4 || die "aclocal failed"
+aclocal --force -I $cwd/m4 -I $llvm_m4 || die "aclocal failed"
 echo "Regenerating configure with autoconf 2.5x"
-autoconf -o ../configure configure.ac || die "autoconf failed"
+autoconf --force --warnings=all -o ../configure configure.ac || die "autoconf failed"
 cd ..
 exit 0






More information about the llvm-commits mailing list