[Lldb-commits] [lldb] r144546 - /lldb/trunk/test/make/Makefile.rules
Johnny Chen
johnny.chen at apple.com
Mon Nov 14 10:37:49 PST 2011
Author: johnny
Date: Mon Nov 14 12:37:49 2011
New Revision: 144546
URL: http://llvm.org/viewvc/llvm-project?rev=144546&view=rev
Log:
Dependency file for dylib source was not being cleaned up.
Modified:
lldb/trunk/test/make/Makefile.rules
Modified: lldb/trunk/test/make/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/make/Makefile.rules?rev=144546&r1=144545&r2=144546&view=diff
==============================================================================
--- lldb/trunk/test/make/Makefile.rules (original)
+++ lldb/trunk/test/make/Makefile.rules Mon Nov 14 12:37:49 2011
@@ -203,7 +203,7 @@
ifeq "$(DYLIB_NAME)" ""
rm -rf "$(EXE)" "$(DSYM)" $(OBJECTS) $(PREREQS)
else
- rm -rf "$(EXE)" "$(DSYM)" $(OBJECTS) $(PREREQS) $(DYLIB_OBJECTS) $(DYLIB_FILENAME) $(DYLIB_FILENAME).dSYM
+ rm -rf "$(EXE)" "$(DSYM)" $(OBJECTS) $(PREREQS) $(DYLIB_OBJECTS) $(DYLIB_PREREQS) $(DYLIB_FILENAME) $(DYLIB_FILENAME).dSYM
endif
#----------------------------------------------------------------------
More information about the lldb-commits
mailing list