mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
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.
This commit is contained in:
@ -3,5 +3,5 @@
|
||||
# src/tools/codelines
|
||||
|
||||
# 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
|
||||
|
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user