projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fb8eaa
)
Add execute permits.
author
Bruce Momjian
Tue, 8 Oct 1996 04:04:38 +0000
(
04:04
+0000)
committer
Bruce Momjian
Tue, 8 Oct 1996 04:04:38 +0000
(
04:04
+0000)
src/MAKE_CTAGS
[deleted file]
patch
|
blob
|
blame
|
history
diff --git
a/src/MAKE_CTAGS
b/src/MAKE_CTAGS
deleted file mode 100644
(file)
index
816ba70
..0000000
--- a/
src/MAKE_CTAGS
+++ /dev/null
@@
-1,10
+0,0 @@
-#!/bin/sh
-trap "rm -f /tmp/$$" 0 1 2 3 15
-rm -f ./tags
-find `pwd`/ -type f -name '*.[chyl]' -print|xargs ctags -t -a -f tags
-sort tags >/tmp/$$ && mv /tmp/$$ tags
-
-find . -type d -print |while read DIR
-do
- [ "$DIR" != "." ] && ln -f -s `pwd`/tags $DIR/tags
-done