Skip to content

Commit 5e42112

Browse files
committed
Rollup merge of rust-lang#29397 - dylanmckay:llvmdeps-deps, r=brson
Previously the file was not regenrated upon modification of `src/rustllvm` or others. Now it will be rebuilt if `src/llvm` or `src/rustllvm` is touched. Also added *.rs rule to 'clean' rule so that it is removed upon 'make clean'. Fixes rust-lang#28614.
2 parents 561d088 + 9c1dad7 commit 5e42112

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mk/clean.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ clean-generic-$(2)-$(1):
6565
-name '*.def' -o \
6666
-name '*.py' -o \
6767
-name '*.pyc' -o \
68-
-name '*.bc' \
68+
-name '*.bc' -o \
69+
-name '*.rs' \
6970
\) \
7071
| xargs rm -f
7172
$(Q)find $(1) \

0 commit comments

Comments
 (0)