auto merge of #13216 : alexcrichton/rust/fix-configure-for-travis, r=sfackler

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:
bors 2014-03-30 17:21:40 -07:00
commit 612e22e417

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