From: Brian Gaeke Date: Tue, 24 Feb 2004 22:58:31 +0000 (+0000) Subject: small portability fix. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2051fe3df52d385daa56ce69765ef172386e5927;p=oota-llvm.git small portability fix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11814 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/autoconf/AutoRegen.sh b/autoconf/AutoRegen.sh index efedd1a143e..40bd96be5f9 100755 --- a/autoconf/AutoRegen.sh +++ b/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