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: ceph-for-6.17-rc6~623^2~9 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=a503a313108e26402151f25c1f2628ec91bda605;p=ceph-client.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 98680e9cd7be3..99ce427d9a69d 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 ;;