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>
This commit is contained in:
Masatake YAMATO 2025-05-30 04:46:33 +09:00 committed by Masahiro Yamada
parent 0f57c75973
commit a503a31310

View File

@ -344,7 +344,7 @@ case "$1" in
"tags")
rm -f tags
xtags ctags
xtags ${CTAGS:-ctags}
remove_structs=y
;;