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

Reid Spencer reid at x10sys.com
Sun Apr 2 07:34:38 PDT 2006



Changes in directory llvm/runtime:

Makefile updated: 1.24 -> 1.25
---
Log message:

For PR722: http://llvm.cs.uiuc.edu/PR722 :
Change the check for llvm-gcc from using LLVMGCCDIR to LLVMGCC. This checks
for the actual tool rather than the directory in which the tool resides. In
the case of this bug, it is possible that the directory exists but that the
tools in that directory do not. This fix should avoid the makefile from
erroneously proceeding without the actual tools being available.


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

 Makefile |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/runtime/Makefile
diff -u llvm/runtime/Makefile:1.24 llvm/runtime/Makefile:1.25
--- llvm/runtime/Makefile:1.24	Thu Jan 13 10:51:19 2005
+++ llvm/runtime/Makefile	Sun Apr  2 09:34:26 2006
@@ -10,15 +10,15 @@
 LEVEL = ..
 include $(LEVEL)/Makefile.config
 
-ifneq ($(wildcard $(LLVMGCCDIR)),)
+ifneq ($(wildcard $(LLVMGCC)),)
 PARALLEL_DIRS  := GCCLibraries  libdummy libprofile libtrace GC
 else
 PARALLEL_DIRS  := 
 install all ::
-	@echo '********' Warning: Your LLVMGCCDIR is set incorrectly.  Double-check 
+	@echo '********' Warning: Your LLVMGCCDIR is set incorrectly.  Check 
 	@echo '********' Warning: llvm/Makefile.config to make sure it matches
-	@echo '********' Warning: the directory where the C front-end is installed,
-	@echo '********' Warning: and re-run configure if it does not.
+	@echo '********' Warning: the directory where the C front-end is
+	@echo '********' Warning: installed,and re-run configure if it does not.
 endif
 
 # Disable libprofile: a faulty libtool is generated by autoconf which breaks the






More information about the llvm-commits mailing list