Skip Menu |

This queue is for tickets about the ExtUtils-MakeMaker-Coverage CPAN distribution.

Report information
The Basics
Id: 68022
Status: new
Priority: 0/
Queue: ExtUtils-MakeMaker-Coverage

People
Owner: Nobody in particular
Requestors: MITHALDU [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: (no value)
Fixed in: (no value)



Subject: unnecessary spaces are being created in Makefiles, which breaks when using dmake
At line 121 there are some trailing spaces in Coverage.pm that get inserted into Makefiles, which works fine with some makes, but not with others like dmake. This causes other dists like Captcha::reCaptcha to fail installation. Patch is attached.
Subject: 0001-fix.patch
diff --git a/Coverage.pm b/Coverage.pm index 66cdd05..48d3962 100644 --- a/Coverage.pm +++ b/Coverage.pm @@ -118,7 +118,7 @@ testcover: coverclean pure_all q['$(INST_ARCHLIB)')" ] . $files; ### add the proper report format - $make_frag .= qq[\n + $make_frag .= qq[\n \$(COVER) $report \n]; -- 1.7.3.1.msysgit.0