summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2006-02-21 00:43:43 +0000
committerSteve Peters <steve@fisharerojo.org>2006-02-21 00:43:43 +0000
commit743b448f857ced95665ca43324e7007186d6d89c (patch)
tree63647f01a94f5f74c20dcb00963027b6b91bd35b
parentcd755de4750e2191b6465129deed94f5a245ab7e (diff)
downloadperl-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.pm3
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);