From 7bb98eee3c9e4694dfc2217001d5075ce8d2906e Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sun, 15 Jul 2012 13:40:04 +0000 Subject: [PATCH] mk1mf.pl: replace chop to make it work in mixture of perls for Windows. --- util/mk1mf.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; $_=; for (;;) { - chop; + s/\s*$//; # was chop, didn't work in mixture of perls for Windows... ($key,$val)=/^([^=]+)=(.*)/; if ($key eq "RELATIVE_DIRECTORY") -- GitLab