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.
This commit is contained in:
Alex Crichton 2014-03-30 13:54:57 -07:00
parent ec7d0c7cc5
commit 9f990f74b3
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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"
;;
(*)