From eb5ed4871068b3418dd972333210f7b2f631f8de Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Tue, 21 Jul 2015 18:49:59 -0400 Subject: [PATCH] Correct INSTALLDIRS setting in Makefile.PL. Change should make latest File::Path installable on perl-5.6.2 For: https://rt.cpan.org/Ticket/Display.html?id=105977 --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 93486e6..9895712 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -14,7 +14,7 @@ WriteMakefile( VERSION_FROM => 'lib/File/Path.pm', ABSTRACT_FROM => 'lib/File/Path.pm', AUTHOR => 'Richard Elberger', - INSTALLDIRS => ($] >= 5.008001 ? 'perl' : 'site'), + INSTALLDIRS => ($] < 5.011 ? 'perl' : 'site'), PREREQ_PM => { 'Carp' => 0, 'Cwd' => 0,