1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-24 00:23:06 +03:00

Add another pgdefine path check, and a cvs-git change.

This commit is contained in:
Bruce Momjian
2011-08-26 21:52:35 -04:00
parent e7088713cd
commit 68c019a538
3 changed files with 6 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \
-type f -name '*.[chyl]' -print|sed 's;//;/;g'`
find . -name 'CVS' -prune -o -type d -print |while read DIR
find . \( -name .git -a -prune \) -o -type d -print |while read DIR
do
[ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID
done