commit | 67475a7ed773212f9209d307493b33e40ae96cda | [log] [tgz] |
---|---|---|
author | Richard Levitte <levitte@openssl.org> | Mon Apr 03 09:15:15 2006 +0000 |
committer | Richard Levitte <levitte@openssl.org> | Mon Apr 03 09:15:15 2006 +0000 |
tree | 802f57e5b9ec95cf0eb898e558edd050ff776166 | |
parent | 362ab3e4f9da3608beb7ed509a63f8961995d71e [diff] [blame] |
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 621092b..e4124c4 100755 --- a/Configure +++ b/Configure
@@ -698,7 +698,7 @@ { while (<IN>) { - chop; + chomp; if (/^CONFIGURE_ARGS=(.*)/) { $argvstring=$1; @@ -1280,7 +1280,7 @@ my $sdirs=0; while (<IN>) { - chop; + chomp; $sdirs = 1 if /^SDIRS=/; if ($sdirs) { my $dir;