mirror of
https://github.com/postgres/postgres.git
synced 2025-05-20 00:03:14 -04:00
Try to fix mode.
This commit is contained in:
parent
33b433b1af
commit
00b1fb07f0
10
src/MAKE_ETAGS
Normal file
10
src/MAKE_ETAGS
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user