mk1mf.pl: replace chop for windows.
Backport old patch to make it work in mixture of perls for Windows. Reviewed-by: Richard Levitte <levitte@openssl.org> Cherry-picked from7bb98eee3c
(cherry picked from commit051b41df41
)
This commit is contained in:
parent
76b49a8ad7
commit
2df0ba9b4f
1 changed files with 1 additions and 1 deletions
|
@ -326,7 +326,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")
|
||||
|
|
Loading…
Reference in a new issue