From: Richard Levitte Date: Mon, 3 Apr 2006 09:15:15 +0000 (+0000) Subject: Change chop to chomp when reading lines, so CRLF is properly processed on X-Git-Tag: OpenSSL_0_9_8k^2~1456 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=67475a7ed773212f9209d307493b33e40ae96cda;ds=sidebyside 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 621092b8fb..e4124c4c24 100755 --- a/Configure +++ b/Configure @@ -698,7 +698,7 @@ PROCESS_ARGS: { while () { - chop; + chomp; if (/^CONFIGURE_ARGS=(.*)/) { $argvstring=$1; @@ -1280,7 +1280,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;