From d89e61f354d50020fd4cb1fbfb37bf0864ad5ec1 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 21 Jan 2013 04:30:27 +0000 Subject: [PATCH] * update-copyright (update_maybe): Accommodate perl-style copyright comments. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/update-copyright | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 5ababd9bc..ba930290e 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2013-01-20 Christopher Faylor + + * update-copyright (update_maybe): Accommodate perl-style copyright + comments. + 2013-01-20 Christopher Faylor * update-copyright: Silently skip nonexistent files. Display filename diff --git a/winsup/cygwin/update-copyright b/winsup/cygwin/update-copyright index 47ab14f32..112592eb3 100755 --- a/winsup/cygwin/update-copyright +++ b/winsup/cygwin/update-copyright @@ -54,7 +54,7 @@ sub update_maybe($%) { while (<>) { if ($copyright) { push @file, $_; - } elsif (/^\s*Copyright/o) { + } elsif (/^[#\s]*Copyright/o) { $copyright = $_; $copyright .= scalar <> while $copyright =~ /,\s*$/o; if ($copyright !~ /Red Hat, Inc\.\n/o) { @@ -64,7 +64,7 @@ sub update_maybe($%) { for my $date ($copyright =~ /(\d+)/g) { $dates{$date} = 1; } - my $indent = ($copyright =~ /\A(\s*)/o)[0]; + my $indent = ($copyright =~ /\A([#\s]*)/o)[0]; my $newcopyright = addwrap $indent, $indent . 'Copyright ' . (join ', ', sort {$a <=> $b} sort keys %dates) .