summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2012-07-15 13:40:04 +0000
committerAndy Polyakov <appro@openssl.org>2012-07-15 13:40:04 +0000
commit7bb98eee3c9e4694dfc2217001d5075ce8d2906e (patch)
treeba0b64294b218c1dea3715763f49c0128481b546 /util
parent799379215e2dad7c85015dad899fde2f6461edfc (diff)
mk1mf.pl: replace chop to make it work in mixture of perls for Windows.
Diffstat (limited to 'util')
-rwxr-xr-xutil/mk1mf.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index d818c61b9f..e27434d267 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -347,7 +347,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")