summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
Diffstat (limited to 'Porting')
-rw-r--r--Porting/checkAUTHORS.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl
index fa5f863ccf..a52e090203 100644
--- a/Porting/checkAUTHORS.pl
+++ b/Porting/checkAUTHORS.pl
@@ -124,12 +124,14 @@ while (<>) {
$log = $_;
my $prefix = " " x length $1;
LOG: while (<>) {
+ next if /^$/;
if (s/^$prefix//) {
$log .= $_;
} elsif (/^\s+Branch:/) {
last LOG;
} else {
- die "Malformed log end with $_";
+ chomp;
+ die "Malformed log end with '$_'";
}
}
}