Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2012-12-04 17:30:01 +0400
committerZoltan Varga <vargaz@gmail.com>2012-12-04 21:37:17 +0400
commit875765e60ce0529d8e3a3091c1d0b04be0bf1b38 (patch)
treee6aa80758a90fc8d73225d48bb0e98ed6cd1ad27
parent6485ad70781c39b42e732042147e1013ee260709 (diff)
Delete .dSYM directories using rm -rf.
-rw-r--r--mono/mini/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/mono/mini/Makefile.am b/mono/mini/Makefile.am
index 990804f4306..8ebf01aa0df 100644
--- a/mono/mini/Makefile.am
+++ b/mono/mini/Makefile.am
@@ -666,10 +666,10 @@ gctest: mono gc-test.exe
LLVM_AOT_RUNTIME_OPTS=$(if $(LLVM),--llvm,)
aotcheck: mono $(regtests)
- rm -f *.exe.so *.exe.dylib *.exe.dylib.dSYM
+ rm -rf *.exe.so *.exe.dylib *.exe.dylib.dSYM
$(RUNTIME) $(LLVM_AOT_RUNTIME_OPTS) --aot $(regtests) || exit 1
for i in $(regtests); do $(RUNTIME_AOTCHECK) --regression $$i || exit 1; done
- rm -f *.exe.so *.exe.dylib *.exe.dylib.dSYM
+ rm -rf *.exe.so *.exe.dylib *.exe.dylib.dSYM
llvmaotcheck:
$(MAKE) aotcheck LLVM=1