in reply to Re: CPAN authors, clean up your directories
in thread CPAN authors, clean up your directories
The proper answer isn't "delete old versions", though. The proper answer is to do what it has said in the perlmod manpage for a long time:
$VERSION = do { my @r = (q$Revision: 2.21 $ =~ /\d+/g); sprintf "%d.". +"%02d" x $#r, @r }; # must be all one line, for MakeMaker
-- Randal L. Schwartz, Perl hacker
|
---|