]> granicus.if.org Git - postgresql/commitdiff
Fix problem with regex in copyright test.
authorBruce Momjian <bruce@momjian.us>
Fri, 19 Aug 2011 21:45:10 +0000 (17:45 -0400)
committerBruce Momjian <bruce@momjian.us>
Fri, 19 Aug 2011 21:45:10 +0000 (17:45 -0400)
Report and fix by Kris Jurka

src/tools/copyright.pl

index e91aea11652d44b2fc0bda239f63f7360b11d764..91f73e37ab3f1d34a779faec1d9df48d5766ed2a 100755 (executable)
@@ -13,7 +13,7 @@ use warnings;
 use File::Find;
 
 my $pgdg = 'PostgreSQL Global Development Group';
-my $cc = 'Copyright (c) ';
+my $cc = 'Copyright \(c\) ';
 # year-1900 is what localtime(time) puts in element 5
 my $year = 1900 + ${[localtime(time)]}[5];