diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-07 05:15:31 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-07 05:15:31 +0000 |
commit | 00b1fb07f0da10d9867f32d5ebdf6e4ad5b2c641 (patch) | |
tree | 5ebaff862d074886f71fe4110e9d86c9ccdcfed4 /src | |
parent | 33b433b1afb150316b1d82bbab8b5a81683231c9 (diff) | |
download | postgresql-00b1fb07f0da10d9867f32d5ebdf6e4ad5b2c641.tar.gz postgresql-00b1fb07f0da10d9867f32d5ebdf6e4ad5b2c641.zip |
Try to fix mode.
Diffstat (limited to 'src')
-rw-r--r-- | src/MAKE_ETAGS | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/MAKE_ETAGS b/src/MAKE_ETAGS new file mode 100644 index 00000000000..94b9597aa40 --- /dev/null +++ b/src/MAKE_ETAGS @@ -0,0 +1,10 @@ +#!/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 |