1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-02 11:09:29 +00:00

don't terminate the log entry with the first hyphen

This commit is contained in:
Oliver Eikemeier 2004-05-30 15:09:11 +00:00
parent 6aa0e9c0b6
commit 0d19350b78
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=110412

View File

@ -271,7 +271,7 @@ sub blame {
my @cvslog = readfrom "$portsdir/$origin",
$cvs, '-R', 'log', '-N', '-r' . ($revision{$origin} ? $revision{$origin} : '.'), 'Makefile';
foreach (@cvslog) {
my $in_log = /^-/ ... /^[-=]/;
my $in_log = /^-{28}$/ ... /^(-{28}|={77})$/;
print $fh " | $_\n"
if ($in_log && $in_log != 1 && $in_log !~ /E0$/);
}