]> git.lizzy.rs Git - rust.git/commitdiff
configure: Accept LLVM 3.4.X during configuration
authorAlex Crichton <alex@alexcrichton.com>
Sun, 30 Mar 2014 20:54:57 +0000 (13:54 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Sun, 30 Mar 2014 20:54:57 +0000 (13:54 -0700)
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

index 90966bd57b4dbe0ae89411abf21dd79867d5c069..3fe0f376feb81748fd4cdbc8bcbb84afb58d7b65 100755 (executable)
--- 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"
             ;;
         (*)