[llvm-commits] CVS: llvm/runtime/Makefile

Reid Spencer reid at x10sys.com
Fri Apr 7 14:45:36 PDT 2006



Changes in directory llvm/runtime:

Makefile updated: 1.27 -> 1.28
---
Log message:

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.


---
Diffs of the changes:  (+1 -1)

 Makefile |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/runtime/Makefile
diff -u llvm/runtime/Makefile:1.27 llvm/runtime/Makefile:1.28
--- llvm/runtime/Makefile:1.27	Fri Apr  7 13:41:16 2006
+++ llvm/runtime/Makefile	Fri Apr  7 16:45:23 2006
@@ -10,7 +10,7 @@
 LEVEL = ..
 include $(LEVEL)/Makefile.config
 
-ifneq ($(LLVMGCC_MAJVERS),3)
+ifeq ($(LLVMGCC_MAJVERS),4)
 PARALLEL_DIRS :=
 install all::
 	$(Echo) "Warning: These runtime libraries only need to be built with"






More information about the llvm-commits mailing list