Skip to content

Commit 612e22e

Browse files
committed
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.
2 parents 2674a16 + 9f990f7 commit 612e22e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ then
610610
LLVM_VERSION=$($LLVM_CONFIG --version)
611611

612612
case $LLVM_VERSION in
613-
(3.[2-5]svn|3.[2-5])
613+
(3.[2-5]*)
614614
msg "found ok version of LLVM: $LLVM_VERSION"
615615
;;
616616
(*)

0 commit comments

Comments
 (0)