diff options
| author | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-24 22:58:31 +0000 |
|---|---|---|
| committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-24 22:58:31 +0000 |
| commit | 01d9231855e13f785c5c70502830c9ddd26e9106 (patch) | |
| tree | abf746945ffe6dc29e11688c09dc02c5d9a9210c /llvm | |
| parent | 9ccb1af08f0f55050f873cb0d08be311ac226d26 (diff) | |
| download | bcm5719-llvm-01d9231855e13f785c5c70502830c9ddd26e9106.tar.gz bcm5719-llvm-01d9231855e13f785c5c70502830c9ddd26e9106.zip | |
small portability fix.
llvm-svn: 11814
Diffstat (limited to 'llvm')
| -rwxr-xr-x | llvm/autoconf/AutoRegen.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/autoconf/AutoRegen.sh b/llvm/autoconf/AutoRegen.sh index efedd1a143e..40bd96be5f9 100755 --- a/llvm/autoconf/AutoRegen.sh +++ b/llvm/autoconf/AutoRegen.sh @@ -7,7 +7,8 @@ test -d autoconf && test -f autoconf/configure.ac && cd autoconf [ -f configure.ac ] || die "Can't find 'autoconf' dir; please cd into it first" echo "Regenerating aclocal.m4 with aclocal" aclocal || die "aclocal failed" -if ! autoconf --version | egrep '2\.5[0-9]' > /dev/null +autoconf --version | egrep '2\.5[0-9]' > /dev/null +if test $? -ne 0 then die "Your autoconf was not detected as being 2.5x" fi |

