Skip to content

Commit d0ca581

Browse files
committed
Rollup merge of #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 #28614.
2 parents 9cf0e3c + 9c1dad7 commit d0ca581

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)