summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2006-04-03 09:15:40 +0000
committerRichard Levitte <levitte@openssl.org>2006-04-03 09:15:40 +0000
commitf4bcd70f2749eb89d0253a2eafef8acdceb3e2c7 (patch)
treefea695dc0410c21e8c4a506c6981601209368cdb /Configure
parent6e16b45d9d41d97fc0e0dd68c06363532c9fed12 (diff)
downloadopenssl-new-f4bcd70f2749eb89d0253a2eafef8acdceb3e2c7.tar.gz
Change chop to chomp when reading lines, so CRLF is properly processed on
the operating systems where they are the normal line endings
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configure b/Configure
index 7cd6bfb3bd..9831ff3fab 100755
--- a/Configure
+++ b/Configure
@@ -697,7 +697,7 @@ PROCESS_ARGS:
{
while (<IN>)
{
- 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 (<IN>)
{
- chop;
+ chomp;
$sdirs = 1 if /^SDIRS=/;
if ($sdirs) {
my $dir;