$ExtUtils::MM_Unix::VERSION needs to stay numeric to avoid test
Steve Peters [Tue, 21 Feb 2006 00:43:43 +0000 (00:43 +0000)]
warnings.

p4raw-id: //depot/perl@27256

lib/ExtUtils/MM_Unix.pm

index 2df687f..7884328 100644 (file)
@@ -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);