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