summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2021-06-29 11:12:56 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-06-29 20:04:00 (GMT)
commit033395be3287170658f0a36fa406dea9def7b657 (patch)
tree17070823906d8e19b48ab81ea33920d5c44476be /Makefile
parent922f8bbbf1097206969e423dd7af1bf33443765b (diff)
downloadgit-033395be3287170658f0a36fa406dea9def7b657.zip
git-033395be3287170658f0a36fa406dea9def7b657.tar.gz
git-033395be3287170658f0a36fa406dea9def7b657.tar.bz2
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 3c80fcb591 (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 <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4dd9711..faa8900 100644
--- a/Makefile
+++ b/Makefile
@@ -2739,7 +2739,7 @@ tags: FORCE
.PHONY: cscope
cscope:
- $(RM) cscope*
+ $(QUIET_GEN)$(RM) cscope* && \
$(FIND_SOURCE_FILES) | xargs cscope -b
### Detect prefix changes