summaryrefslogtreecommitdiff
path: root/dist/Storable
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2013-04-13 17:45:10 +0100
committerJames E Keenan <jkeenan@cpan.org>2013-04-14 06:52:59 +0100
commit262731eedb57f5384b69ab925580eb75e90180b7 (patch)
tree364f1eab0d4f48823041c07c3078e9dcdc13b445 /dist/Storable
parentffc8163459b527fe692284958365016d02c16c86 (diff)
downloadperl-262731eedb57f5384b69ab925580eb75e90180b7.tar.gz
Subject: [PATCH] Update INSTALLDIRS to favor installation under 'site'.
For: RT #116479
Diffstat (limited to 'dist/Storable')
-rw-r--r--dist/Storable/Makefile.PL2
-rw-r--r--dist/Storable/Storable.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/dist/Storable/Makefile.PL b/dist/Storable/Makefile.PL
index bcfd9e0cff..23111299f5 100644
--- a/dist/Storable/Makefile.PL
+++ b/dist/Storable/Makefile.PL
@@ -14,7 +14,7 @@ WriteMakefile(
# We now ship this in t/
# PREREQ_PM => { 'Test::More' => '0.41' },
PREREQ_PM => { XSLoader => 0 },
- INSTALLDIRS => $] >= 5.007 ? 'perl' : 'site',
+ INSTALLDIRS => ($] >= 5.007 && $] < 5.012) ? 'perl' : 'site',
VERSION_FROM => 'Storable.pm',
($ExtUtils::MakeMaker::VERSION > 6.45 ?
(META_MERGE => { resources =>
diff --git a/dist/Storable/Storable.pm b/dist/Storable/Storable.pm
index 7d53454ba6..bb1083d3fd 100644
--- a/dist/Storable/Storable.pm
+++ b/dist/Storable/Storable.pm
@@ -21,7 +21,7 @@ package Storable; @ISA = qw(Exporter);
use vars qw($canonical $forgive_me $VERSION);
-$VERSION = '2.40';
+$VERSION = '2.41';
BEGIN {
if (eval { local $SIG{__DIE__}; require Log::Agent; 1 }) {