diff options
| author | Brian Anderson <andersrb@gmail.com> | 2012-04-16 18:27:04 -0700 |
|---|---|---|
| committer | Brian Anderson <andersrb@gmail.com> | 2012-04-16 18:27:04 -0700 |
| commit | a532ad282887a4e0f40cf20a0e893acf861f8413 (patch) | |
| tree | fa4039e280bdd56606308dd97c9209f1fd025694 | |
| parent | 82727b926fdf556f1ef6a7ec745a16600e5928a8 (diff) | |
| parent | 71be233432bac87e6019f0189b47e9b385e5320d (diff) | |
| download | rust-a532ad282887a4e0f40cf20a0e893acf861f8413.tar.gz rust-a532ad282887a4e0f40cf20a0e893acf861f8413.zip | |
Merge pull request #2224 from tedhorst/cleandsym
properly clean .dSYM directories
| -rw-r--r-- | mk/clean.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mk/clean.mk b/mk/clean.mk index 53eb01ad3d8..d116c6203f3 100644 --- a/mk/clean.mk +++ b/mk/clean.mk @@ -29,9 +29,11 @@ clean-misc: -name '*.dylib' -o \ -name '*.dll' -o \ -name '*.def' -o \ - -name '*.bc' -o \ - -name '*.dSYM' \ + -name '*.bc' \ | xargs rm -f + $(Q)find rustllvm rt $(CFG_HOST_TRIPLE)\ + -name '*.dSYM' \ + | xargs rm -Rf $(Q)rm -f $(RUNTIME_OBJS) $(RUNTIME_DEF) $(Q)rm -f $(RUSTLLVM_LIB_OBJS) $(RUSTLLVM_OBJS_OBJS) $(RUSTLLVM_DEF) $(Q)rm -Rf $(DOCS) |
