From 780e99c8c5a08f91fe4d0401c10da205d02bbd40 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Thu, 9 Sep 2010 13:02:27 +0100 Subject: [PATCH] Make t/porting/authors.t pass under LC_ALL=en_GB.UTF-8 PERL_UNICODE="" --- Porting/checkAUTHORS.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl index e8700a4..37f1726 100755 --- a/Porting/checkAUTHORS.pl +++ b/Porting/checkAUTHORS.pl @@ -197,6 +197,7 @@ sub read_authors_files { my (%count, %raw); foreach my $filename (@authors) { open FH, "<$filename" or die "Can't open $filename: $!"; + binmode FH, ':encoding(ISO-8859-1)'; while () { next if /^\#/; next if /^-- /; -- 1.8.3.1