We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1327a0b commit c82b63aCopy full SHA for c82b63a
src/tools/make_etags
@@ -1,12 +1,12 @@
1
#!/bin/sh
2
3
-# $PostgreSQL: pgsql/src/tools/make_etags,v 1.4 2009/01/13 19:32:29 petere Exp $
+# $PostgreSQL: pgsql/src/tools/make_etags,v 1.5 2009/01/14 21:28:32 petere Exp $
4
5
rm -f ./TAGS
6
find `pwd`/ -type f -name '*.[chyl]' -print | \
7
xargs etags --append -o TAGS
8
9
-find . -type d -print | \
+find . -type d \( -name CVS -o -name .git -prune -o -print \) | \
10
while read DIR; do
11
[ "$DIR" != "." ] && ln -f -s `pwd`/TAGS $DIR
12
done
0 commit comments