diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-09-22 19:51:46 -0400 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-09-22 19:51:46 -0400 |
| commit | 5074f688485c5526980677df8641d35db9f50d9c (patch) | |
| tree | 81894b35db2f487b22694388cd0854c655d571e8 /src | |
| parent | f3a838bb761cdddf4a90cb62e2e585b82205d13c (diff) | |
Fix remaining stray references to CVS.
These are just cosmetic and don't seem worth back-patching far.
I put them into 9.0 just because it was trivial to do so.
Diffstat (limited to 'src')
| -rw-r--r-- | src/backend/commands/copy.c | 2 | ||||
| -rwxr-xr-x | src/tools/codelines | 2 | ||||
| -rw-r--r-- | src/tools/msvc/Install.pm | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c index 4e95a8315ce..a6e1d354360 100644 --- a/src/backend/commands/copy.c +++ b/src/backend/commands/copy.c @@ -2632,7 +2632,7 @@ CopyReadLineText(CopyState cstate) * something other than a period. In non-CSV mode, anything * after a backslash is special, so we skip over that second * character too. If we didn't do that \\. would be - * considered an eof-of copy, while in non-CVS mode it is a + * considered an eof-of copy, while in non-CSV mode it is a * literal backslash followed by a period. In CSV mode, * backslashes are not special, so we want to process the * character after the backslash just like a normal character, diff --git a/src/tools/codelines b/src/tools/codelines index 6455e83e0a4..7840c9c6e5a 100755 --- a/src/tools/codelines +++ b/src/tools/codelines @@ -3,5 +3,5 @@ # $PostgreSQL: pgsql/src/tools/codelines,v 1.3 2006/03/11 04:38:41 momjian Exp $ # This script is used to compute the total number of "C" lines in the release -# This should be run from the top of the CVS tree after a 'make distclean' +# This should be run from the top of the Git tree after a 'make distclean' find . -name '*.[chyl]' | xargs cat| wc -l diff --git a/src/tools/msvc/Install.pm b/src/tools/msvc/Install.pm index 2026d184794..7a7d990d006 100644 --- a/src/tools/msvc/Install.pm +++ b/src/tools/msvc/Install.pm @@ -438,6 +438,7 @@ sub CopyIncludeFiles while (my $d = readdir($D)) { next if ($d =~ /^\./); + next if ($d eq '.git'); next if ($d eq 'CVS'); next unless (-d 'src/include/' . $d); |
