summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasatake YAMATO <yamato@redhat.com>2025-05-30 04:46:33 +0900
committerMasahiro Yamada <masahiroy@kernel.org>2025-06-06 05:40:25 +0900
commita503a313108e26402151f25c1f2628ec91bda605 (patch)
treeb2306cc9e58be27d491b14c5db4548389a3e68c9
parent0f57c75973bedc08a865b06ce1b73ae5b54477c0 (diff)
scripts/tags.sh: allow to use alternative ctags implementation
Some ctags implementations are available. With this change, You can specify your favorite one with CTAGS environment variable. Signed-off-by: Masatake YAMATO <yamato@redhat.com> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rwxr-xr-xscripts/tags.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tags.sh b/scripts/tags.sh
index 98680e9cd7be..99ce427d9a69 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -344,7 +344,7 @@ case "$1" in
"tags")
rm -f tags
- xtags ctags
+ xtags ${CTAGS:-ctags}
remove_structs=y
;;