Commit a503a313 authored by Masatake YAMATO's avatar Masatake YAMATO Committed by Masahiro Yamada
Browse files

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: default avatarMasatake YAMATO <yamato@redhat.com>
Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent 0f57c759
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -344,7 +344,7 @@ case "$1" in

	"tags")
		rm -f tags
		xtags ctags
		xtags ${CTAGS:-ctags}
		remove_structs=y
		;;