summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-09-09 13:02:27 +0100
committerNicholas Clark <nick@ccl4.org>2010-09-09 13:02:27 +0100
commit780e99c8c5a08f91fe4d0401c10da205d02bbd40 (patch)
tree96b4f5962f29d747615db5882a7b2662c90716df /Porting
parent56b98d0f4bece55b858afe59e6460b6250dcde52 (diff)
downloadperl-780e99c8c5a08f91fe4d0401c10da205d02bbd40.tar.gz
Make t/porting/authors.t pass under LC_ALL=en_GB.UTF-8 PERL_UNICODE=""
Diffstat (limited to 'Porting')
-rwxr-xr-xPorting/checkAUTHORS.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl
index e8700a4b3d..37f17267a6 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 (<FH>) {
next if /^\#/;
next if /^-- /;