From 8388a7897774c7111d0014751cddf52d2bc47193 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Thu, 6 Dec 2012 23:59:54 +0000 Subject: [PATCH] Try to unbreak makefile build by excluding gtest-all.cc source llvm-svn: 169564 --- utils/unittest/googletest/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/unittest/googletest/Makefile b/utils/unittest/googletest/Makefile index 22c8f36fccb..280b012e67e 100644 --- a/utils/unittest/googletest/Makefile +++ b/utils/unittest/googletest/Makefile @@ -36,4 +36,6 @@ endif NO_INSTALL = 1 +Source = $(filter-out gtest-all.cc,$(wildcard *.cc)) + include $(LEVEL)/Makefile.common