[llvm-commits] [llvm] r78592 - /llvm/trunk/test/Makefile

Erick Tryzelaar idadesub at users.sourceforge.net
Mon Aug 10 12:45:05 PDT 2009


Author: erickt
Date: Mon Aug 10 14:45:05 2009
New Revision: 78592

URL: http://llvm.org/viewvc/llvm-project?rev=78592&view=rev
Log:
Fix ocaml "make check" tests, that wasn't finding the proper c++ compiler.

Modified:
    llvm/trunk/test/Makefile

Modified: llvm/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Makefile?rev=78592&r1=78591&r2=78592&view=diff

==============================================================================
--- llvm/trunk/test/Makefile (original)
+++ llvm/trunk/test/Makefile Mon Aug 10 14:45:05 2009
@@ -106,7 +106,7 @@
 
 ifneq ($(OCAMLC),)
 CC_FOR_OCAMLC := $(shell $(OCAMLC) -config | grep native_c_compiler | sed -e 's/native_c_compiler: //')
-CXX_FOR_OCAMLC := $(patsubst gcc,g++,$(CC_FOR_OCAMLC))
+CXX_FOR_OCAMLC := $(subst gcc,g++,$(CC_FOR_OCAMLC))
 endif
 
 FORCE:





More information about the llvm-commits mailing list