From: Jarkko Hietaniemi Date: Sat, 14 Apr 2001 14:44:55 +0000 (+0000) Subject: Do not just blindly add CR. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0ffbf4185387a2eb683a43f7d57b71d58f0f4c55;p=p5sagit%2Fp5-mst-13.2.git Do not just blindly add CR. p4raw-id: //depot/perl@9700 --- diff --git a/Porting/makerel b/Porting/makerel index 138fffa..4c50085 100644 --- a/Porting/makerel +++ b/Porting/makerel @@ -141,7 +141,7 @@ my @crlf = qw( win32/Makefile win32/makefile.mk ); -system("perl -pi -e 's/\$/\\r/' @crlf"); +system("perl -pi -e 's/\015*\012/\015\012/' @crlf"); print "\n"; chdir ".." or die $!;