From: Jerry Hedden Date: Tue, 23 Dec 2008 16:49:36 +0000 (-0500) Subject: Handle non-numeric version numbers in ext/Digest/MD5/Makefile.PL X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fc0bcb62b85d01e88e3b64c381528a3ea82ead30;p=p5sagit%2Fp5-mst-13.2.git Handle non-numeric version numbers in ext/Digest/MD5/Makefile.PL --- diff --git a/ext/Digest/MD5/Makefile.PL b/ext/Digest/MD5/Makefile.PL old mode 100644 new mode 100755 index 7ce7da5..bb23687 --- a/ext/Digest/MD5/Makefile.PL +++ b/ext/Digest/MD5/Makefile.PL @@ -20,7 +20,7 @@ if ($^O eq 'VMS') { push(@extra, 'INSTALLDIRS' => 'perl') if $] >= 5.008; push(@extra, 'MAN3PODS' => {}) if $PERL_CORE; # Pods built by installman. -push @extra, 'LICENSE' => 'perl' if $ExtUtils::MakeMaker::VERSION >= "6.30"; +push @extra, 'LICENSE' => 'perl' if eval($ExtUtils::MakeMaker::VERSION) >= "6.30"; WriteMakefile( 'NAME' => 'Digest::MD5',