summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian2012-01-02 00:36:10 +0000
committerBruce Momjian2012-01-02 00:36:10 +0000
commitf4cd747a4d760600ec9791a95957e993c320ba63 (patch)
tree61b543ef204583da6a4d2a92cab8ec34a9c9df2f /src
parente126958c2efdfc2d60b978d1fc7a780ff647e8ad (diff)
Skip 'ico' and 'bin' extensions in copyright changes.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/tools/copyright.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/copyright.pl b/src/tools/copyright.pl
index 705edaf3ee1..79458b551c4 100755
--- 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;