Commit 3c580b8d authored by Bruce Momjian's avatar Bruce Momjian

Fix make_ctags for exhuberant tags.

parent 5fad748e
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
trap "rm -f /tmp/$$" 0 1 2 3 15 trap "rm -f /tmp/$$" 0 1 2 3 15
rm -f ./tags rm -f ./tags
if [ "`ctags --version 2>&1 | grep Exuberant`" != "Exuberant" ] if ctags --version 2>&1 | grep Exuberant >/dev/null
then FLAGS="-dt" then FLAGS="--c-types=+dfmstuv"
else FLAGS="--c-types=+dfmstuv" else FLAGS="-dt"
fi fi
find `pwd`/ \( -name _deadcode -a -prune \) -o \ find `pwd`/ \( -name _deadcode -a -prune \) -o \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment