diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-02-21 00:43:43 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-02-21 00:43:43 +0000 |
commit | 743b448f857ced95665ca43324e7007186d6d89c (patch) | |
tree | 63647f01a94f5f74c20dcb00963027b6b91bd35b | |
parent | cd755de4750e2191b6465129deed94f5a245ab7e (diff) | |
download | perl-743b448f857ced95665ca43324e7007186d6d89c.tar.gz |
$ExtUtils::MM_Unix::VERSION needs to stay numeric to avoid test
warnings.
p4raw-id: //depot/perl@27256
-rw-r--r-- | lib/ExtUtils/MM_Unix.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 2df687f595..7884328a38 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -20,7 +20,8 @@ use vars qw($VERSION @ISA use ExtUtils::MakeMaker qw($Verbose neatvalue); -$VERSION = '1.50_01'; +# $VERSION needs to stay numeric to avoid test warnings +$VERSION = '1.5002'; require ExtUtils::MM_Any; @ISA = qw(ExtUtils::MM_Any); |