diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-24 23:45:13 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-24 23:45:13 +0000 |
commit | afcd6a3133e2c5daccc999958fd102a875e082b1 (patch) | |
tree | d05acfecd012ce8c5217ac1e0e6d861d9807526e | |
parent | f769df5ef9d7dead47c5b6292c2eb485b7aeba8d (diff) | |
download | bcm5719-llvm-afcd6a3133e2c5daccc999958fd102a875e082b1.tar.gz bcm5719-llvm-afcd6a3133e2c5daccc999958fd102a875e082b1.zip |
Update for autoconf 2.6x;
llvm-svn: 67654
-rwxr-xr-x | llvm/projects/sample/autoconf/AutoRegen.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/projects/sample/autoconf/AutoRegen.sh b/llvm/projects/sample/autoconf/AutoRegen.sh index 7c04715cdf4..126703ba5aa 100755 --- a/llvm/projects/sample/autoconf/AutoRegen.sh +++ b/llvm/projects/sample/autoconf/AutoRegen.sh @@ -5,9 +5,9 @@ die () { } test -d autoconf && test -f autoconf/configure.ac && cd autoconf test -f configure.ac || die "Can't find 'autoconf' dir; please cd into it first" -autoconf --version | egrep '2\.5[0-9]' > /dev/null +autoconf --version | egrep '2\.[56][0-9]' > /dev/null if test $? -ne 0 ; then - die "Your autoconf was not detected as being 2.5x" + die "Your autoconf was not detected as being 2.5x or 2.6x" fi cwd=`pwd` if test -d ../../../autoconf/m4 ; then @@ -46,7 +46,7 @@ sed -e "s#^LLVM_SRC_ROOT=.*#LLVM_SRC_ROOT=\"$llvm_src_root\"#" \ echo "Regenerating aclocal.m4 with aclocal" rm -f aclocal.m4 aclocal -I $llvm_m4 -I "$llvm_m4/.." || die "aclocal failed" -echo "Regenerating configure with autoconf 2.5x" +echo "Regenerating configure with autoconf" autoconf --warnings=all -o ../configure configure.ac || die "autoconf failed" cd .. exit 0 |