mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Fix make_ctags for exhuberant tags.
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
trap "rm -f /tmp/$$" 0 1 2 3 15
|
||||
rm -f ./tags
|
||||
|
||||
if [ "`ctags --version 2>&1 | grep Exuberant`" != "Exuberant" ]
|
||||
then FLAGS="-dt"
|
||||
else FLAGS="--c-types=+dfmstuv"
|
||||
if ctags --version 2>&1 | grep Exuberant >/dev/null
|
||||
then FLAGS="--c-types=+dfmstuv"
|
||||
else FLAGS="-dt"
|
||||
fi
|
||||
|
||||
find `pwd`/ \( -name _deadcode -a -prune \) -o \
|
||||
|
Reference in New Issue
Block a user