projects
/
users
/
hanada
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f531623
)
MOved them.
author
Bruce Momjian
<
[email protected]
>
Thu, 3 Oct 1996 17:27:48 +0000
(17:27 +0000)
committer
Bruce Momjian
<
[email protected]
>
Thu, 3 Oct 1996 17:27:48 +0000
(17:27 +0000)
MAKE_CTAGS
[deleted file]
patch
|
blob
|
blame
|
history
diff --git
a/MAKE_CTAGS
b/MAKE_CTAGS
deleted file mode 100644
(file)
index
ef99564
..0000000
--- a/
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