summaryrefslogtreecommitdiff
path: root/src/mkhelp.pl
diff options
context:
space:
mode:
authorseonah moon <seonah1.moon@samsung.com>2016-04-06 23:59:58 -0700
committerseonah moon <seonah1.moon@samsung.com>2016-04-06 23:59:58 -0700
commit7a9f915fa6be8c8955ff2c59169538a4d0349080 (patch)
treeb8564c993bce1fd1d285780c32ec554b2785096f /src/mkhelp.pl
parent2bc9d6bb53df44a0c5174767de734620c2cdfd9e (diff)
downloadcurl-7a9f915fa6be8c8955ff2c59169538a4d0349080.tar.gz
curl-7a9f915fa6be8c8955ff2c59169538a4d0349080.tar.bz2
curl-7a9f915fa6be8c8955ff2c59169538a4d0349080.zip
Revert "Update to 7.44.0"
This reverts commit 2bc9d6bb53df44a0c5174767de734620c2cdfd9e. Change-Id: I831001a99b6ad80dc062c84b3877208e1b40b80a
Diffstat (limited to 'src/mkhelp.pl')
-rw-r--r--src/mkhelp.pl10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/mkhelp.pl b/src/mkhelp.pl
index 088a09a06..7ed86f7cd 100644
--- a/src/mkhelp.pl
+++ b/src/mkhelp.pl
@@ -54,9 +54,6 @@ while (<STDIN>) {
# this should be removed:
$line =~ s/(.|_)//g;
- # remove trailing CR from line. msysgit checks out files as line+CRLF
- $line =~ s/\r$//;
-
if($line =~ /^([ \t]*\n|curl)/i) {
# cut off headers and empty lines
$wline++; # count number of cut off lines
@@ -93,12 +90,7 @@ open(READ, "<$README") ||
die "couldn't read the README infile $README";
while(<READ>) {
- my $line = $_;
-
- # remove trailing CR from line. msysgit checks out files as line+CRLF
- $line =~ s/\r$//;
-
- push @out, $line;
+ push @out, $_;
}
close(READ);