Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc82b63a

Browse files
committed
Avoid version-control system directories when creating TAGS. Besides
being wasteful, this can collide with repostory metadata on case-insensitivefile sytems.
1 parent1327a0b commitc82b63a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/tools/make_etags

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/bin/sh
22

3-
# $PostgreSQL: pgsql/src/tools/make_etags,v 1.4 2009/01/13 19:32:29 petere Exp $
3+
# $PostgreSQL: pgsql/src/tools/make_etags,v 1.5 2009/01/14 21:28:32 petere Exp $
44

55
rm -f ./TAGS
66
find`pwd`/ -type f -name'*.[chyl]' -print| \
77
xargs etags --append -o TAGS
88

9-
find. -type d-print| \
9+
find. -type d\( -name CVS -o -name .git -prune -o -print\)| \
1010
whileread DIR;do
1111
["$DIR"!="." ]&& ln -f -s`pwd`/TAGS$DIR
1212
done

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp