diff options
author | Alexey Samsonov <samsonov@google.com> | 2012-12-06 23:59:54 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2012-12-06 23:59:54 +0000 |
commit | e40aecf037a60e2c30f29c322eb09bd7da0fe0a9 (patch) | |
tree | d1402791746788160fd56f1487499e9098aa25d0 /utils | |
parent | c4e8ddff0c29bfc2eb1d5bf13e947bd04d4454ff (diff) |
Try to unbreak makefile build by excluding gtest-all.cc source
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169564 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/unittest/googletest/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/unittest/googletest/Makefile b/utils/unittest/googletest/Makefile index 22c8f36fcc..280b012e67 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 |