diff options
Diffstat (limited to 'openssl/util/mk1mf.pl')
-rwxr-xr-x | openssl/util/mk1mf.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/util/mk1mf.pl b/openssl/util/mk1mf.pl index df95147ae..a88b2b870 100755 --- a/openssl/util/mk1mf.pl +++ b/openssl/util/mk1mf.pl @@ -383,7 +383,7 @@ open(IN,"<$infile") || die "unable to open $infile:$!\n"; $_=<IN>; for (;;) { - chop; + s/\s*$//; # was chop, didn't work in mixture of perls for Windows... ($key,$val)=/^([^=]+)=(.*)/; if ($key eq "RELATIVE_DIRECTORY") |