Remove *.exe.dylib.dSYM files too in the mini aotcheck target.
authorZoltan Varga <vargaz@gmail.com>
Mon, 3 Sep 2012 17:53:43 +0000 (19:53 +0200)
committerZoltan Varga <vargaz@gmail.com>
Mon, 3 Sep 2012 17:53:52 +0000 (19:53 +0200)
mono/mini/Makefile.am

index 299f89437c287611e763a793276584e54baa907e..2c21350f15962c4cd29268a07b4cb35402047cb6 100644 (file)
@@ -657,10 +657,10 @@ gctest: mono gc-test.exe
 LLVM_AOT_RUNTIME_OPTS=$(if $(LLVM),--llvm,)
 
 aotcheck: mono $(regtests)
-       rm -f *.exe.so *.exe.dylib
+       rm -f *.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
+       rm -f *.exe.so *.exe.dylib *.exe.dylib.dSYM
 
 llvmaotcheck:
        $(MAKE) aotcheck LLVM=1