[Lldb-commits] [lldb] r175547 - Fix Makefile bug preventing tests from running when building lldb with ccache
Daniel Malea
daniel.malea at intel.com
Tue Feb 19 11:31:05 PST 2013
Author: dmalea
Date: Tue Feb 19 13:31:05 2013
New Revision: 175547
URL: http://llvm.org/viewvc/llvm-project?rev=175547&view=rev
Log:
Fix Makefile bug preventing tests from running when building lldb with ccache
Modified:
lldb/trunk/test/Makefile
Modified: lldb/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/Makefile?rev=175547&r1=175546&r2=175547&view=diff
==============================================================================
--- lldb/trunk/test/Makefile (original)
+++ lldb/trunk/test/Makefile Tue Feb 19 13:31:05 2013
@@ -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))"
More information about the lldb-commits
mailing list