Remove trailing slashes from include paths. Some versions of mingw don't like them.
authorBenjamin Kramer <benny.kra@googlemail.com>
Mon, 27 Jul 2009 09:39:18 +0000 (09:39 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Mon, 27 Jul 2009 09:39:18 +0000 (09:39 +0000)
llvm-svn: 77188

llvm/unittests/Makefile
llvm/utils/unittest/googletest/Makefile

index 1eb69ab..53c02a8 100644 (file)
@@ -13,7 +13,7 @@ include $(LEVEL)/Makefile.config
 
 LIBRARYNAME = UnitTestMain
 BUILD_ARCHIVE = 1
-CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
+CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include
 CPP.Flags += -Wno-variadic-macros
 
 PARALLEL_DIRS = ADT ExecutionEngine Support VMCore MC
index d709878..8366055 100644 (file)
@@ -15,7 +15,7 @@ NO_VARIADIC_MACROS := $(shell $(CXX) -Wno-variadic-macros -fsyntax-only -xc /dev
 
 LIBRARYNAME = GoogleTest
 BUILD_ARCHIVE = 1
-CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
+CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include
 CPP.Flags += $(NO_MISSING_FIELD_INITIALIZERS) $(NO_VARIADIC_MACROS)
 
 ifeq ($(OS),MingW)