diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-01-08 22:43:15 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-01-08 22:43:15 +0000 |
commit | 77ebfeacf485ddf164803294eee13949ad1cfe79 (patch) | |
tree | aa905ca7e5b5a80a4af38fc636e99c70ddfa2928 /Porting | |
parent | 2418932d8c7d4c563890df10334f05740becb4bf (diff) | |
download | perl-77ebfeacf485ddf164803294eee13949ad1cfe79.tar.gz |
Cope with change entries that are \r terminated
p4raw-id: //depot/perl@26747
Diffstat (limited to 'Porting')
-rwxr-xr-x | Porting/genlog | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Porting/genlog b/Porting/genlog index 98bccdd702..9926b37e70 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); |