Commit 51b59d69 authored by unknown's avatar unknown

Use binary file mode when writing the modified .TRG file to avoid CR/LF's being added on windows

parent 9d616d57
...@@ -241,6 +241,8 @@ open(FILE, "<", $fname) or die; ...@@ -241,6 +241,8 @@ open(FILE, "<", $fname) or die;
my @content= grep($_ !~ /^definers=/, <FILE>); my @content= grep($_ !~ /^definers=/, <FILE>);
close FILE; close FILE;
open(FILE, ">", $fname) or die; open(FILE, ">", $fname) or die;
# Use binary file mode to avoid CR/LF's being added on windows
binmode FILE;
print FILE @content; print FILE @content;
print FILE "definers='' '\@' '\@abc\@def\@\@' '\@hostname' '\@abcdef\@\@\@hostname'\n"; print FILE "definers='' '\@' '\@abc\@def\@\@' '\@hostname' '\@abcdef\@\@\@hostname'\n";
close FILE; close FILE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment