projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8de4434
)
Try to fix mode.
author
Bryan Henderson
Thu, 7 Nov 1996 05:10:17 +0000
(
05:10
+0000)
committer
Bryan Henderson
Thu, 7 Nov 1996 05:10:17 +0000
(
05:10
+0000)
src/MAKE_ETAGS
[deleted file]
patch
|
blob
|
blame
|
history
diff --git
a/src/MAKE_ETAGS
b/src/MAKE_ETAGS
deleted file mode 100644
(file)
index
94b9597
..0000000
--- a/
src/MAKE_ETAGS
+++ /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 etags --append --output=TAGS
-
-find . -type d -print | \
-while read DIR; do
- [ "$DIR" != "." ] && ln -f -s `pwd`/TAGS $DIR
-done