]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Makefile: match shell scripts in FIND_SOURCE_FILES
authorJeff King <peff@peff.net>
Wed, 14 Dec 2016 14:29:44 +0000 (09:29 -0500)
committerJunio C Hamano <gitster@pobox.com>
Wed, 14 Dec 2016 17:54:49 +0000 (09:54 -0800)
We feed FIND_SOURCE_FILES to ctags to help developers
navigate to particular functions, but we only feed C source
code. The same feature can be helpful when working with
shell scripts (especially the test suite). Modern versions
of ctags know how to parse shell scripts; we just need to
feed the filenames to it.

This patch specifically avoids including the individual test
scripts themselves. Those are unlikely to be of interest,
and there are a lot of them to process. It does pick up
test-lib.sh and test-lib-functions.sh.

Note that our negative pathspec already excludes the
individual scripts for the ls-files case, but we need to
loosen the `find` rule to match it.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile

index 001126931d0b770cb94e73461880aabf31a76eba..ef8de4a754fced422918339adaf34c224053424f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2152,14 +2152,16 @@ po/build/locale/%/LC_MESSAGES/git.mo: po/%.po
 FIND_SOURCE_FILES = ( \
        git ls-files \
                '*.[hcS]' \
+               '*.sh' \
                ':!*[tp][0-9][0-9][0-9][0-9]*' \
                2>/dev/null || \
        $(FIND) . \
                \( -name .git -type d -prune \) \
-               -o \( -name '[tp][0-9][0-9][0-9][0-9]' -type d -prune \) \
+               -o \( -name '[tp][0-9][0-9][0-9][0-9]*' -prune \) \
                -o \( -name build -type d -prune \) \
                -o \( -name 'trash*' -type d -prune \) \
                -o \( -name '*.[hcS]' -type f -print \) \
+               -o \( -name '*.sh' -type f -print \) \
        )
 
 $(ETAGS_TARGET): FORCE