diff options
| author | bors <bors@rust-lang.org> | 2014-03-16 01:36:21 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-03-16 01:36:21 -0700 |
| commit | d956975e7d92f56ebfa6133c45af62d024b888df (patch) | |
| tree | 8e47cbeec69707f68bdde5f6aa42f46868b53598 | |
| parent | f6fcdbb68718380beca798d087c46152cad0949c (diff) | |
| parent | 94078f750a629bb82b0ce649eb8058054cec58fe (diff) | |
auto merge of #12899 : brson/rust/cleanbacktrace, r=alexcrichton
After `make clean` I'm seeing the build break with ``` cp: cannot stat ‘x86_64-unknown-linux-gnu/rt/libbacktrace/.libs/libbacktrace.a’: No such file or directory ``` Deleteing the libbacktrace dir entirely on clean fixes.
| -rw-r--r-- | mk/clean.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mk/clean.mk b/mk/clean.mk index 73813a4b751..34fd4d06fe5 100644 --- a/mk/clean.mk +++ b/mk/clean.mk @@ -78,6 +78,7 @@ define CLEAN_HOST_STAGE_N clean$(1)_H_$(2): \ $$(foreach crate,$$(CRATES),clean$(1)_H_$(2)-lib-$$(crate)) \ $$(foreach tool,$$(TOOLS),clean$(1)_H_$(2)-tool-$$(tool)) + $$(Q)rm -fr $(2)/rt/libbacktrace clean$(1)_H_$(2)-tool-%: $$(Q)rm -f $$(HBIN$(1)_H_$(2))/$$*$$(X_$(2)) |
