Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e126958
)
Skip 'ico' and 'bin' extensions in copyright changes.
author
Bruce Momjian
<bruce@momjian.us>
Mon, 2 Jan 2012 00:36:10 +0000
(19:36 -0500)
committer
Bruce Momjian
<bruce@momjian.us>
Mon, 2 Jan 2012 00:36:10 +0000
(19:36 -0500)
src/tools/copyright.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/tools/copyright.pl
b/src/tools/copyright.pl
index 705edaf3ee135759950e23e2b59ff3dad972b1e3..79458b551c4b5026619547417c8765b118fe4ccb 100755
(executable)
--- a/
src/tools/copyright.pl
+++ b/
src/tools/copyright.pl
@@
-31,6
+31,7
@@
sub wanted {
}
return if ! -f $File::Find::name || -l $File::Find::name;
+ return if ($_ =~ m/\.(ico|bin)$);
my @lines;
tie @lines, "Tie::File", $File::Find::name;