mk1mf.pl: replace chop to make it work in mixture of perls for Windows.

This commit is contained in:
Andy Polyakov 2012-07-15 13:40:04 +00:00
parent 799379215e
commit 7bb98eee3c

View File

@ -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")