Simpler $Revision$ based $VERSION. Plus, repentance!
authorMichael G. Schwern <schwern@pobox.com>
Sat, 3 May 2003 15:30:16 +0000 (08:30 -0700)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 5 May 2003 15:47:19 +0000 (15:47 +0000)
Message-ID: <20030503223016.GE1234@windhund.schwern.org>

p4raw-id: //depot/perl@19425

pod/perlmod.pod

index a216457..6cbdce3 100644 (file)
@@ -335,7 +335,7 @@ create a file called F<Some/Module.pm> and start with this template:
         # set the version for version checking
         $VERSION     = 1.00;
         # if using RCS/CVS, this may be preferred
-        $VERSION = do { my @r = (q$Revision: 2.21 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; # must be all one line, for MakeMaker
+        $VERSION = sprintf "%d.%03d", q$Revision: 1.1 $ =~ /(\d+)/g;
 
         @ISA         = qw(Exporter);
         @EXPORT      = qw(&func1 &func2 &func4);