Prevent tags files in cvs directory.

This commit is contained in:
Bruce Momjian 2000-02-10 18:34:26 +00:00
parent 5d93742b8d
commit ecef31ca61
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ find `pwd`/ \( -name _deadcode -a -prune \) -o \
sort tags >/tmp/$$ && mv /tmp/$$ tags
find . -type d -print |while read DIR
find . -name 'CVS' -prune -o -type d -print |while read DIR
do
[ "$DIR" != "." ] && ln -f -s `pwd`/tags $DIR/tags
done