diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2013-08-06 22:47:50 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2013-08-06 22:47:50 +0100 |
commit | e88ca83cb2da96ab9f1ada0aee57def2ba1479ec (patch) | |
tree | 90c76198427ca9e397518819a67f2fb9a27c97bf | |
parent | c3923c33af542d8764d5a1e4eb5d7b311f443b89 (diff) | |
download | perl-e88ca83cb2da96ab9f1ada0aee57def2ba1479ec.tar.gz |
Fix t/porting/customized.t --regen not to add DOS EOLs on Windows
-rw-r--r-- | t/porting/customized.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/porting/customized.t b/t/porting/customized.t index 331e118080..a769c58cc9 100644 --- a/t/porting/customized.t +++ b/t/porting/customized.t @@ -71,10 +71,10 @@ EOF my $data_fh; if ( $regen ) { - open $data_fh, '>:bytes', $customised or die "Can't open $customised"; + open $data_fh, '>:raw', $customised or die "Can't open $customised"; } else { - open $data_fh, '<:bytes', $customised or die "Can't open $customised"; + open $data_fh, '<:raw', $customised or die "Can't open $customised"; while (<$data_fh>) { chomp; my ($module,$file,$sha) = split ' '; |