mirror of https://github.com/torvalds/linux.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 <yamato@redhat.com> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
0f57c75973
commit
a503a31310
|
|
@ -344,7 +344,7 @@ case "$1" in
|
||||||
|
|
||||||
"tags")
|
"tags")
|
||||||
rm -f tags
|
rm -f tags
|
||||||
xtags ctags
|
xtags ${CTAGS:-ctags}
|
||||||
remove_structs=y
|
remove_structs=y
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue