diff options
author | Jerry Hedden <jhedden@PN100-02-2-356p.corp.bloomberg.com> | 2008-12-23 11:49:36 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-12-28 17:55:34 +0100 |
commit | fc0bcb62b85d01e88e3b64c381528a3ea82ead30 (patch) | |
tree | 216d7e2798e998a89903339909c77c878f999a9d /ext/Digest/MD5/Makefile.PL | |
parent | 92970b93f52417834e63ece1fd5d664e42639847 (diff) | |
download | perl-fc0bcb62b85d01e88e3b64c381528a3ea82ead30.tar.gz |
Handle non-numeric version numbers in ext/Digest/MD5/Makefile.PL
Diffstat (limited to 'ext/Digest/MD5/Makefile.PL')
-rwxr-xr-x[-rw-r--r--] | ext/Digest/MD5/Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Digest/MD5/Makefile.PL b/ext/Digest/MD5/Makefile.PL index 7ce7da5b8c..bb236879f4 100644..100755 --- 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', |