Skip to content

Commit 033395b

Browse files
avargitster
authored andcommitted
Makefile: add QUIET_GEN to "cscope" target
Don't show the very verbose $(FIND_SOURCE_FILES) command on every "make cscope" invocation. See my recent 3c80fcb (Makefile: add QUIET_GEN to "tags" and "TAGS" targets, 2021-03-28) for the same fix for the other adjacent targets. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 922f8bb commit 033395b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2739,7 +2739,7 @@ tags: FORCE
27392739

27402740
.PHONY: cscope
27412741
cscope:
2742-
$(RM) cscope*
2742+
$(QUIET_GEN)$(RM) cscope* && \
27432743
$(FIND_SOURCE_FILES) | xargs cscope -b
27442744

27452745
### Detect prefix changes

0 commit comments

Comments
 (0)