summaryrefslogtreecommitdiff
path: root/src/auto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-05-10 15:42:03 +0200
committerBram Moolenaar <Bram@vim.org>2011-05-10 15:42:03 +0200
commit5897e0c47029512890ecec2c8dddfb9103b02d88 (patch)
treed1d8b9ee7b1538a1a41bd4ea1b12fc6cab43a546 /src/auto
parent05da428462ac4ec73de78250eca185da68049170 (diff)
downloadvim-git-5897e0c47029512890ecec2c8dddfb9103b02d88.tar.gz
updated for version 7.3.183v7.3.183
Problem: When Exuberant ctags binary is exuberant-ctags it's not found. Solution: Add configure check for exuberant-ctags.
Diffstat (limited to 'src/auto')
-rwxr-xr-xsrc/auto/configure8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/auto/configure b/src/auto/configure
index f7a77d440..dbfe36a72 100755
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -12028,10 +12028,12 @@ 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 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
+if (eval ctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
TAGPRG="ctags -I INIT+ --fields=+S"
+elif (eval exctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
+ TAGPRG="exctags -I INIT+ --fields=+S"
+elif (eval exuberant-ctags --version /dev/null | grep Exuberant) < /dev/null 1>&5 2>&1; then
+ TAGPRG="exuberant-ctags -I INIT+ --fields=+S"
else
TAGPRG="ctags"
(eval etags /dev/null) < /dev/null 1>&5 2>&1 && TAGPRG="etags"