[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Rich Salz
rsalz at openssl.org
Fri May 15 18:19:15 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via 051b41df4105355a5a9c7f1c0bd00cc70b2d324c (commit)
from c59bd61b2efe023775fdc85b8452399fe551fb58 (commit)
- Log -----------------------------------------------------------------
commit 051b41df4105355a5a9c7f1c0bd00cc70b2d324c
Author: Andy Polyakov <appro at openssl.org>
Date: Sun Jul 15 13:40:04 2012 +0000
mk1mf.pl: replace chop for windows.
Backport old patch to make it work in mixture of perls for Windows.
Reviewed-by: Richard Levitte <levitte at openssl.org>
Cherry-picked from 7bb98eee3c9e4694dfc2217001d5075ce8d2906e
-----------------------------------------------------------------------
Summary of changes:
util/mk1mf.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 7d4491f..9b8abc0 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -340,7 +340,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")
More information about the openssl-commits
mailing list