From: Steve Peters Date: Tue, 21 Feb 2006 00:43:43 +0000 (+0000) Subject: $ExtUtils::MM_Unix::VERSION needs to stay numeric to avoid test X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=743b448f857ced95665ca43324e7007186d6d89c;p=p5sagit%2Fp5-mst-13.2.git $ExtUtils::MM_Unix::VERSION needs to stay numeric to avoid test warnings. p4raw-id: //depot/perl@27256 --- diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 2df687f..7884328 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);