From: Nicholas Clark Date: Sun, 8 Jan 2006 22:43:15 +0000 (+0000) Subject: Cope with change entries that are \r terminated X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=77ebfeacf485ddf164803294eee13949ad1cfe79;p=p5sagit%2Fp5-mst-13.2.git Cope with change entries that are \r terminated p4raw-id: //depot/perl@26747 --- diff --git a/Porting/genlog b/Porting/genlog index 98bccdd..9926b37 100755 --- a/Porting/genlog +++ b/Porting/genlog @@ -69,6 +69,7 @@ if ($?) { die "$0: `p4 -p $p4port describe -s @changes` failed, status[$?]\n"; } else { + tr/\r/\n/ foreach @desc; chomp @desc; while (@desc) { my ($change,$who,$date,$time,@log,$branch,$file,$type,%files);