summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-04-07 21:45:23 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-04-07 21:45:23 +0000
commit30ea2fa93314e5b6ce3f58beaffe37f04ba76ac8 (patch)
tree71af4dad0f53815ee1da823c572e8903f120e477 /Makefile
parent664ade71b9f210333574788876fb8392a93f375a (diff)
downloadllvm-30ea2fa93314e5b6ce3f58beaffe37f04ba76ac8.tar.gz
llvm-30ea2fa93314e5b6ce3f58beaffe37f04ba76ac8.tar.bz2
llvm-30ea2fa93314e5b6ce3f58beaffe37f04ba76ac8.tar.xz
Invert the tests on LLVMGCC_MAJVERS to check for value 4 instead of value
3. This ensures that if llvm-gcc isn't available and consequently the value of LLVMGCC_MAJVERS is blank, that the old (include runtime) behavior will persist. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27499 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d3c6e6c0fd..5a25a799b2 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ ifeq ($(MAKECMDGOALS),tools-only)
else
ifneq ($(MAKECMDGOALS),libs-only)
DIRS += tools
- ifeq ($(LLVMGCC_MAJVERS),3)
+ ifneq ($(LLVMGCC_MAJVERS),4)
DIRS += runtime
else
$(warning Skipping runtime libraries, llvm-gcc 4 detected.)