diff src/auto/configure @ 2797:820f12659c50 v7.3.174

updated for version 7.3.174 Problem: When Exuberant ctags binary is exctags it's not found. Solution: Add configure check for exctags. (Hong Xu)
author Bram Moolenaar <bram@vim.org>
date Thu, 05 May 2011 17:24:27 +0200
parents 7c46737918cb
children 94f42ae4e4e6
line wrap: on
line diff
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -12031,7 +12031,9 @@ fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create tags" >&5
 $as_echo_n "checking how to create tags... " >&6; }
 test -f tags && mv tags tags.save
-if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
+if (eval exctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
+  TAGPRG="exctags -I INIT+ --fields=+S"
+elif (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
   TAGPRG="ctags -I INIT+ --fields=+S"
 else
   TAGPRG="ctags"