Skip to content

Commit

Permalink
Merge pull request #28 from jkeenan/105977-perl-5.6.2
Browse files Browse the repository at this point in the history
Correct INSTALLDIRS setting in Makefile.PL.
  • Loading branch information
rpcme committed Jul 22, 2015
2 parents 43f83cf + eb5ed48 commit 6cff3b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -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,
Expand Down

0 comments on commit 6cff3b8

Please sign in to comment.