mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-26 00:30:05 -04:00
Merge branch '980-util-update_copyrights-now-needs-to-handle-files-with-cr-lf-endings' into 'master'
Resolve "util/update_copyrights now needs to handle files with CR LF endings." Closes #980 See merge request isc-projects/bind9!1801
This commit is contained in:
commit
d134dd9c8c
1 changed files with 1 additions and 1 deletions
|
|
@ -227,7 +227,7 @@ foreach $file (keys %file_types) {
|
|||
|
||||
($nonspaceprefix = $prefix) =~ s/\s+$//;
|
||||
|
||||
open(SOURCE, "<$file") || die "can't open $file: $!";
|
||||
open(SOURCE, "<:crlf", $file) || die "can't open $file: $!";
|
||||
$_ = <SOURCE>;
|
||||
if ($type eq "YACC") {
|
||||
unless ($_ eq "%{\n") {
|
||||
|
|
|
|||
Loading…
Reference in a new issue