Skip Menu |

This queue is for tickets about the parent CPAN distribution.

Report information
The Basics
Id: 49328
Status: resolved
Priority: 0/
Queue: parent

People
Owner: Nobody in particular
Requestors: jdhedden [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.222
Fixed in: (no value)



Subject: [PATCH] Install in 'perl' (not 'site') under 5.10.1
'parent' is in Perl 5.10.1 and so needs to be installed under the 'perl' directories, and not site for that Perl version. Attached patch fixes this.
Subject: parent.patch
--- parent-0.222/Makefile.PL.orig 2009-09-01 08:21:52.785449000 -0400 +++ parent-0.222/Makefile.PL 2009-09-01 08:22:04.959427300 -0400 @@ -11,7 +11,7 @@ NAME => 'parent', VERSION_FROM => "lib/parent.pm", # finds $VERSION PREREQ_PM => { Test::More => 0.40 }, - INSTALLDIRS => ($] >= 5.011 ? 'perl' : 'site'), + INSTALLDIRS => ($] >= 5.010001 ? 'perl' : 'site'), ); # Leftover voodoo for testing various Perl distributions
Fixed with 0.233