Skip to content

Commit 31c1042

Browse files
authored
Merge pull request torvalds#698 from ojeda/prepare
Makefile: fix `rust{doc,test,-analyzer}` prerrequisites
2 parents 28a9bd2 + e23b164 commit 31c1042

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1793,12 +1793,12 @@ rustavailable:
17931793
#
17941794
# Using the singular to avoid running afoul of `no-dot-config-targets`.
17951795
PHONY += rustdoc
1796-
rustdoc: prepare0
1796+
rustdoc: prepare
17971797
$(Q)$(MAKE) $(build)=rust $@
17981798

17991799
# Testing target
18001800
PHONY += rusttest
1801-
rusttest: prepare0
1801+
rusttest: prepare
18021802
$(Q)$(MAKE) $(build)=rust $@
18031803

18041804
# Formatting targets
@@ -1823,7 +1823,7 @@ rustfmtcheck: rustfmt
18231823

18241824
# IDE support targets
18251825
PHONY += rust-analyzer
1826-
rust-analyzer: prepare0
1826+
rust-analyzer:
18271827
$(Q)$(MAKE) $(build)=rust $@
18281828

18291829
# Misc

0 commit comments

Comments
 (0)