projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
631beea
)
Add comment about skipping binary files for copyright changes.
author
Bruce Momjian
<
[email protected]
>
Mon, 2 Jan 2012 13:48:59 +0000
(08:48 -0500)
committer
Bruce Momjian
<
[email protected]
>
Mon, 2 Jan 2012 13:49:11 +0000
(08:49 -0500)
src/tools/copyright.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/tools/copyright.pl
b/src/tools/copyright.pl
index 739f18299586e2e158164233a3bc6ce28067113e..db5a2f023c3a0dbf23d90f73755640d4def81235 100755
(executable)
--- a/
src/tools/copyright.pl
+++ b/
src/tools/copyright.pl
@@
-31,6
+31,8
@@
sub wanted {
}
return if ! -f $File::Find::name || -l $File::Find::name;
+ # skip file names with binary extensions
+ # How are these updated? bjm 2012-01-02
return if ($_ =~ m/\.(ico|bin)$);
my @lines;