From: Richard Levitte Date: Mon, 3 Apr 2006 09:15:40 +0000 (+0000) Subject: Change chop to chomp when reading lines, so CRLF is properly processed on X-Git-Tag: OpenSSL_0_9_8b~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4bcd70f2749eb89d0253a2eafef8acdceb3e2c7;p=openssl Change chop to chomp when reading lines, so CRLF is properly processed on the operating systems where they are the normal line endings --- diff --git a/Configure b/Configure index 7cd6bfb3bd..9831ff3fab 100755 --- a/Configure +++ b/Configure @@ -697,7 +697,7 @@ PROCESS_ARGS: { while () { - chop; + chomp; if (/^CONFIGURE_ARGS=(.*)/) { $argvstring=$1; @@ -1264,7 +1264,7 @@ print OUT "### Generated automatically from Makefile.org by Configure.\n\n"; my $sdirs=0; while () { - chop; + chomp; $sdirs = 1 if /^SDIRS=/; if ($sdirs) { my $dir;