Skip Menu |

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

Report information
The Basics
Id: 27838
Status: resolved
Priority: 0/
Queue: ExtUtils-MakeMaker

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

Bug Information
Severity: Normal
Broken in: 6.33
Fixed in: (no value)



Subject: Hard-coded strict version in test
t/prereq.t has a hard-coded version number for 'strict' which causes the test to fail under blead. The attached patch corrects this.
Subject: mm.patch
--- ExtUtils-MakeMaker-6.33/t/prereq.t.orig 2007-06-30 08:35:51.377000000 -0400 +++ ExtUtils-MakeMaker-6.33/t/prereq.t 2007-06-30 08:34:46.064500000 -0400 @@ -80,7 +80,7 @@ ); is $warnings, "Warning: prerequisite I::Do::Not::Exist 0 not found.\n". - "Warning: prerequisite strict 99999 not found. We have 1.03.\n"; + "Warning: prerequisite strict 99999 not found. We have $strict::VERSION.\n"; $warnings = '';
Whoops. Fixed and tested with blead. 6.34 is on its way to CPAN.