From 9f990f74b3020b2639944add7012e01f22cb135b Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sun, 30 Mar 2014 13:54:57 -0700 Subject: [PATCH] configure: Accept LLVM 3.4.X during configuration The previous regex was a bit to strict, rejecting versions such as 3.4.1 which is apparently the version which travis is currently installing, causing all travis builds to fail. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 90966bd57b4db..3fe0f376feb81 100755 --- a/configure +++ b/configure @@ -610,7 +610,7 @@ then LLVM_VERSION=$($LLVM_CONFIG --version) case $LLVM_VERSION in - (3.[2-5]svn|3.[2-5]) + (3.[2-5]*) msg "found ok version of LLVM: $LLVM_VERSION" ;; (*)