diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-02-19 19:31:05 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-02-19 19:31:05 +0000 |
commit | d6915b42ff9c01922cf40391d8386de934864f98 (patch) | |
tree | 6f07a4a3098ba44f98f5c9d05c3d29d357e56938 | |
parent | 37f76e53d780e542efa06c31ebf1aac2481e6e57 (diff) | |
download | bcm5719-llvm-d6915b42ff9c01922cf40391d8386de934864f98.tar.gz bcm5719-llvm-d6915b42ff9c01922cf40391d8386de934864f98.zip |
Fix Makefile bug preventing tests from running when building lldb with ccache
llvm-svn: 175547
-rw-r--r-- | lldb/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/Makefile b/lldb/test/Makefile index b02f8b801c7..64e62af26a2 100644 --- a/lldb/test/Makefile +++ b/lldb/test/Makefile @@ -30,4 +30,4 @@ clean:: #---------------------------------------------------------------------- check-local:: rm -rf lldb-test-traces - python $(PROJ_SRC_DIR)/dosep.ty -o "--executable $(ToolDir)/lldb -q -s lldb-test-traces -C $(CC)" + python $(PROJ_SRC_DIR)/dosep.ty -o "--executable $(ToolDir)/lldb -q -s lldb-test-traces -C $(subst ccache,,$(CC))" |