Skip Menu |

This queue is for tickets about the again CPAN distribution.

Report information
The Basics
Id: 97789
Status: resolved
Priority: 0/
Queue: again

People
Owner: NEILB [...] cpan.org
Requestors: tristan+rtcpan [...] ethereal.net
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.06
Fixed in: 0.08



Subject: Uninitialized value warning
Upon "use again ...", the following message is printed: Use of uninitialized value in numeric lt (<) at /Library/Perl/5.18/again.pm line 16. The fix appears to be easy -- line 16: if (not exists $INC{$file} or -M $INC{$file} < $mtimes{$INC{$file}}) { to: if (not exists $INC{$file} or ($mtimes{$INC{$file}} && -M $INC{$file} < $mtimes{$INC{$file}})) {
Thanks for reporting this, and sorry it took me so long to get around to fixing it. Fixed in 0.08. Cheers, Neil