Skip to content

Commit 1c85712

Browse files
committed
Remove calls to rustboot -rdeps, leave 'touch' in place while working on replacement.
1 parent 33f05a7 commit 1c85712

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

mk/autodep.mk

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,11 @@ boot/$(CFG_STDLIB).d: $(STDLIB_CRATE) $(STDLIB_INPUTS) \
6666
stage0/rustc$(X).d: $(COMPILER_CRATE) $(COMPILER_INPUTS) \
6767
$(STDLIB_CRATE) $(MKFILES) boot/rustboot$(X)
6868
@$(call E, dep: $@)
69-
$(BOOT) -o $(patsubst %.d,%$(X),$@) -shared -rdeps $< >[email protected]
70-
$(Q)$(CFG_PATH_MUNGE) [email protected]
71-
72-
69+
$(Q)touch $@
7370

74-
%.d: %.rc $(MKFILES) boot/rustboot$(X)
71+
%.d: %.rc $(MKFILES)
7572
@$(call E, dep: $@)
76-
$(BOOT) -o $(patsubst %.d,%$(X),$@) -rdeps $< >$@.tmp
77-
$(Q)$(CFG_PATH_MUNGE) $@.tmp
78-
$(Q)rm -f $@.tmp.bak
79-
$(Q)mv $@.tmp $@
73+
$(Q)touch $@
8074

8175
ifneq ($(MAKECMDGOALS),clean)
8276
-include $(CRATE_DEPFILES)

0 commit comments

Comments
 (0)