Install Switch from CPAn into 'site', not 'perl'
David Golden [Thu, 22 Oct 2009 03:25:49 +0000 (23:25 -0400)]
dist/Switch/Changes
dist/Switch/Makefile.PL
dist/Switch/Switch.pm

index 5db4743..ac05ac5 100644 (file)
@@ -115,3 +115,7 @@ Revision history for Perl extension Switch.
 2.15    Tue Oct 20 2009
         - Deprecate shipping Switch.pm in the core distribution.
           (Nicholas Clark)
+
+2.16    (in progress)
+        - For Perl 5.11+, install into 'site', not 'perl'
+
index b977be2..8d280f1 100644 (file)
@@ -3,5 +3,5 @@ WriteMakefile(
     NAME => q[Switch],
     VERSION_FROM => q[Switch.pm],
     PREREQ_PM => { 'Filter::Util::Call' => 0, 'Text::Balanced' => 0 },
-    INSTALLDIRS => $] >= 5.00703 ? 'perl' : 'site',
+    INSTALLDIRS => ($] >= 5.00703 && $] < 5.011) ? 'perl' : 'site',
 );
index b9be6e7..2189ae0 100644 (file)
@@ -6,7 +6,7 @@ use Carp;
 
 use if $] >= 5.011, 'deprecate';
 
-$VERSION = '2.15';
+$VERSION = '2.16';
   
 
 # LOAD FILTERING MODULE...