Subject: | Silence warnings on developer releases with $VERSION = eval $VERSION |
MakeMaker should adopt the practice to eval its own version to get rid
of underscores in developer versions. Underscore in version number leads
to useless and annoying warnings.
Untested patch follows
--- /tmp/MakeMaker.pm~ 2006-09-17 07:00:15.000000000 +0200
+++ /tmp/MakeMaker.pm 2006-09-17 07:00:15.000000000 +0200
@@ -22,6 +22,7 @@
use strict;
$VERSION = '6.30_04';
+$VERSION = eval $VERSION;
($Revision) = q$Revision: 18035 $ =~ /Revision:\s+(\S+)/;
@ISA = qw(Exporter);