From: Masatake YAMATO Date: Thu, 29 May 2025 19:46:33 +0000 (+0900) Subject: scripts/tags.sh: allow to use alternative ctags implementation X-Git-Tag: v6.16-rc1~10^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a503a313108e26402151f25c1f2628ec91bda605;p=thirdparty%2Flinux.git 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 Signed-off-by: Masahiro Yamada --- 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 ;;