diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-23 19:43:11 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-23 19:43:11 +0200 |
commit | 8e704379e8655c2a59200042894fe55d0d82f279 (patch) | |
tree | 41d24ba07383e6cc321ab89b80789f31d4f781b3 /configure | |
parent | 9ce50822bc433f4f28b8147bd06a26457a7c5f1c (diff) |
configure: Fix a typo in LLVM version detection.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ unless ($build_cmd) { print "\n"; print "Your system lacks the following OPTIONAL components:\n"; -unless ($llvm_maj && $llvm_min && $llvm_maj >= 2 && $llvm_min >= 4) { +unless ($llvm_maj && $llvm_min && $llvm_maj >= 2 && $llvm_min >= 3) { print " * LLVM >= 2.3\n"; if ($darwin || $debian) { $optional_install = "$optional_install llvm" if $darwin; |