From: Bruce Momjian Date: Fri, 19 Aug 2011 21:45:10 +0000 (-0400) Subject: Fix problem with regex in copyright test. X-Git-Tag: REL9_2_BETA1~1256 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6dfcadafd3458221aff39b784b5456ac2002653a;p=thirdparty%2Fpostgresql.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 e91aea11652..91f73e37ab3 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];