diff options
author | Michael G. Schwern <schwern@pobox.com> | 2002-05-22 15:14:35 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-05-23 20:17:54 +0000 |
commit | a67d7a01fa16f8e2034dee61f11d32c3d49ac7be (patch) | |
tree | bf391c79770f0b0ce432cc765e49af10e9d3b8b3 /lib/ExtUtils/MakeMaker.pm | |
parent | 662a8415e06f51848864e67b8bf26a899274884e (diff) | |
download | perl-a67d7a01fa16f8e2034dee61f11d32c3d49ac7be.tar.gz |
ExtUtils::MakeMaker 5.95_01 -> 5.96_01
Message-id: <20020522231434.GR7147@ool-18b93024.dyn.optonline.net>
p4raw-id: //depot/perl@16755
Diffstat (limited to 'lib/ExtUtils/MakeMaker.pm')
-rw-r--r-- | lib/ExtUtils/MakeMaker.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm index 38871a4ac1..c93365e7cc 100644 --- a/lib/ExtUtils/MakeMaker.pm +++ b/lib/ExtUtils/MakeMaker.pm @@ -2,10 +2,10 @@ package ExtUtils::MakeMaker; BEGIN {require 5.005_03;} -$VERSION = "5.95_01"; +$VERSION = "5.96_01"; $Version_OK = "5.49"; # Makefiles older than $Version_OK will die # (Will be checked from MakeMaker version 4.13 onwards) -($Revision = substr(q$Revision: 1.53 $, 10)) =~ s/\s+$//; +($Revision = substr(q$Revision: 1.55 $, 10)) =~ s/\s+$//; require Exporter; use Config; @@ -1817,7 +1817,7 @@ MakeMaker object. The following lines will be parsed o.k.: $VERSION = '1.00'; *VERSION = \'1.01'; - ( $VERSION ) = '$Revision: 1.53 $ ' =~ /\$Revision:\s+([^\s]+)/; + ( $VERSION ) = '$Revision: 1.55 $ ' =~ /\$Revision:\s+([^\s]+)/; $FOO::VERSION = '1.10'; *FOO::VERSION = \'1.11'; our $VERSION = 1.2.3; # new for perl5.6.0 |