Message ID | patch-v4-1.5-2ee725e2fba-20210804T225222Z-avarab@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 922f8bbbf1097206969e423dd7af1bf33443765b |
Headers | show |
Series | Makefile: "make tags" fixes & cleanup | expand |
diff --git a/Makefile b/Makefile index 9573190f1d7..671dde5c7a1 100644 --- a/Makefile +++ b/Makefile @@ -2756,6 +2756,7 @@ tags: FORCE $(FIND_SOURCE_FILES) | xargs ctags -a -o tags+ && \ mv tags+ tags +.PHONY: cscope cscope: $(RM) cscope* $(FIND_SOURCE_FILES) | xargs cscope -b @@ -3267,7 +3268,7 @@ endif .PHONY: all install profile-clean cocciclean clean strip .PHONY: shell_compatibility_test please_set_SHELL_PATH_to_a_more_modern_shell -.PHONY: FORCE cscope +.PHONY: FORCE ### Check documentation #
Move the ".PHONY: cscope" rule to live alongside the "cscope" target itself, not to be all the way near the bottom where we define the "FORCE" rule. That line was last modified in 2f76919517e (MinGW: avoid collisions between "tags" and "TAGS", 2010-09-28). Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)