Skip to content

Commit

Permalink
auto merge of #13216 : alexcrichton/rust/fix-configure-for-travis, r=…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
bors committed Mar 31, 2014
2 parents 2674a16 + 9f990f7 commit 612e22e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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"
;;
(*)
Expand Down

0 comments on commit 612e22e

Please sign in to comment.