aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1996-10-03 17:27:48 +0000
committerBruce Momjian <bruce@momjian.us>1996-10-03 17:27:48 +0000
commit25ffb8965fa812ebb49c5b3cf005ce5a0bd2ba02 (patch)
tree5aaf79a251492680db02a36e81102f5d938d1103
parentf5316239b8894357f2e01110c14b0e09ea8e46de (diff)
downloadpostgresql-25ffb8965fa812ebb49c5b3cf005ce5a0bd2ba02.tar.gz
postgresql-25ffb8965fa812ebb49c5b3cf005ce5a0bd2ba02.zip
MOved them.
-rw-r--r--MAKE_CTAGS10
1 files changed, 0 insertions, 10 deletions
diff --git a/MAKE_CTAGS b/MAKE_CTAGS
deleted file mode 100644
index ef99564694c..00000000000
--- 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