summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-23 19:43:11 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-23 19:43:11 +0200
commit8e704379e8655c2a59200042894fe55d0d82f279 (patch)
tree41d24ba07383e6cc321ab89b80789f31d4f781b3 /configure
parent9ce50822bc433f4f28b8147bd06a26457a7c5f1c (diff)
configure: Fix a typo in LLVM version detection.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index eb1b2b6..73eeebd 100755
--- a/configure
+++ b/configure
@@ -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;