diff options
author | Richard Levitte <levitte@openssl.org> | 2006-04-03 11:15:15 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2006-04-03 11:15:15 +0200 |
commit | 67475a7ed773212f9209d307493b33e40ae96cda (patch) | |
tree | 802f57e5b9ec95cf0eb898e558edd050ff776166 /Configure | |
parent | More GOST OIDs (diff) | |
download | openssl-67475a7ed773212f9209d307493b33e40ae96cda.tar.xz openssl-67475a7ed773212f9209d307493b33e40ae96cda.zip |
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 '')
-rwxr-xr-x | Configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -698,7 +698,7 @@ PROCESS_ARGS: { while (<IN>) { - 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 (<IN>) { - chop; + chomp; $sdirs = 1 if /^SDIRS=/; if ($sdirs) { my $dir; |