Commit 051b41df authored by Andy Polyakov's avatar Andy Polyakov Committed by Rich Salz
Browse files

mk1mf.pl: replace chop for windows.



Backport old patch to make it work in mixture of perls for Windows.

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
Cherry-picked from 7bb98eee
parent c59bd61b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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")