diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-03-30 13:54:57 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-03-30 13:54:57 -0700 |
| commit | 9f990f74b3020b2639944add7012e01f22cb135b (patch) | |
| tree | 2ff9a094c4b03fe1c29a2b6a37daf9baa0d11fa0 | |
| parent | ec7d0c7cc59bd45688c420bef7b3095dadc385d8 (diff) | |
| download | rust-9f990f74b3020b2639944add7012e01f22cb135b.tar.gz rust-9f990f74b3020b2639944add7012e01f22cb135b.zip | |
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.
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 90966bd57b4..3fe0f376feb 100755 --- 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" ;; (*) |
