projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d93742
)
Prevent tags files in cvs directory.
author
Bruce Momjian
<bruce@momjian.us>
Thu, 10 Feb 2000 18:34:26 +0000
(18:34 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Thu, 10 Feb 2000 18:34:26 +0000
(18:34 +0000)
src/tools/make_ctags
patch
|
blob
|
blame
|
history
diff --git
a/src/tools/make_ctags
b/src/tools/make_ctags
index 646102daef1c7e6f0204080e2fb8982ba90b9f9a..aa1fb33a03076330fad69dd4e60795ed009dcc6a 100755
(executable)
--- a/
src/tools/make_ctags
+++ b/
src/tools/make_ctags
@@
-6,7
+6,7
@@
find `pwd`/ \( -name _deadcode -a -prune \) -o \
sort tags >/tmp/$$ && mv /tmp/$$ tags
-find . -
type d -print
|while read DIR
+find . -
name 'CVS' -prune -o -type d -print
|while read DIR
do
[ "$DIR" != "." ] && ln -f -s `pwd`/tags $DIR/tags
done