@@ -85,22 +85,22 @@ def get_SCM_properties(self, logger):
85
85
86
86
def FindCtags (logger ):
87
87
"""
88
- Search for Exuberant ctags intelligently, skipping over other ctags
88
+ Search for Universal ctags intelligently, skipping over other ctags
89
89
implementations. Return path to the command or None if not found.
90
90
"""
91
91
binary = None
92
92
logger .debug ("Trying to find ctags binary" )
93
93
for program in ['universal-ctags' , 'ctags' ]:
94
94
executable = get_command (logger , None , program )
95
95
if executable :
96
- # Verify that this executable is or is based on Exuberant Ctags
96
+ # Verify that this executable is or is Universal Ctags
97
97
# by matching the output when run with --version.
98
98
logger .debug ("Checking ctags command {}" .format (executable ))
99
99
cmd = Command ([executable , '--version' ], logger = logger )
100
100
cmd .execute ()
101
101
102
102
output_str = cmd .getoutputstr ()
103
- if output_str and output_str .find ("Exuberant Ctags" ) != - 1 :
103
+ if output_str and output_str .find ("Universal Ctags" ) != - 1 :
104
104
logger .debug ("Got valid ctags binary: {}" .format (executable ))
105
105
binary = executable
106
106
break
@@ -129,7 +129,7 @@ def FindCtags(logger):
129
129
# always check ctags presence unless told not to.
130
130
#
131
131
if not args .no_ctags_check and not FindCtags (logger ):
132
- logger .warning ("Unable to determine Exuberant/ Universal CTags command" )
132
+ logger .warning ("Unable to determine Universal CTags command" )
133
133
134
134
indexer = Indexer (args .options , logger = logger , java = args .java ,
135
135
jar = args .jar , java_opts = args .java_opts )
0 commit comments