This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2418932
)
Cope with change entries that are \r terminated
author
Nicholas Clark
<nick@ccl4.org>
Sun, 8 Jan 2006 22:43:15 +0000
(22:43 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Sun, 8 Jan 2006 22:43:15 +0000
(22:43 +0000)
p4raw-id: //depot/perl@26747
Porting/genlog
patch
|
blob
|
blame
|
history
diff --git
a/Porting/genlog
b/Porting/genlog
index
98bccdd
..
9926b37
100755
(executable)
--- 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);