diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2012-09-25 09:46:42 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2012-09-25 09:46:42 +0100 |
commit | 7ce06b7dca2247fac16c28cd064f3949998cb06e (patch) | |
tree | c82396245295a5b71f3f242fcfbd53def1aa4036 /cpan/Digest-SHA/Makefile.PL | |
parent | 898c3bcab476295054cadaceb5ce68aa230a2d46 (diff) | |
download | perl-7ce06b7dca2247fac16c28cd064f3949998cb06e.tar.gz |
Update Digest-SHA to CPAN version 5.72
[DELTA]
5.72 Mon Sep 24 15:22:08 MST 2012
- adjusted module installation directory for later Perls
-- As of 5.11 Perl searches 'site' first, so use that
-- ref. INSTALLDIRS in Makefile.PL
-- thanks to Robert Sedlacek for patch
Diffstat (limited to 'cpan/Digest-SHA/Makefile.PL')
-rw-r--r-- | cpan/Digest-SHA/Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpan/Digest-SHA/Makefile.PL b/cpan/Digest-SHA/Makefile.PL index 400db39772..2d2ecd5c97 100644 --- a/cpan/Digest-SHA/Makefile.PL +++ b/cpan/Digest-SHA/Makefile.PL @@ -33,7 +33,7 @@ my %att = ( 'DEFINE' => $define, 'INC' => '-I.', 'EXE_FILES' => [ 'shasum' ], - 'INSTALLDIRS' => ($] >= 5.010) ? 'perl' : 'site', + 'INSTALLDIRS' => ($] >= 5.010 and $] < 5.011) ? 'perl' : 'site', ); my $MMversion = $ExtUtils::MakeMaker::VERSION || 0; |