From: Bruce Momjian Date: Fri, 19 Aug 2011 21:45:10 +0000 (-0400) Subject: Fix problem with regex in copyright test. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=6dfcadafd3458221aff39b784b5456ac2002653a;p=users%2Fhanada%2Fpostgres.git Fix problem with regex in copyright test. Report and fix by Kris Jurka --- diff --git a/src/tools/copyright.pl b/src/tools/copyright.pl index e91aea1165..91f73e37ab 100755 --- a/src/tools/copyright.pl +++ b/src/tools/copyright.pl @@ -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];