Subject: | Data::Dumper should not install to site_perl |
The Makefile.PL of Data::Dumper needs an additional line to install the
module to the core module directory. Without this line Data::Dumper gets
installed to site_perl and is never seen by programs, because the
core module directory has precedence over site_perl.
See the attached patch.
Regards,
Slaven
--- ./Makefile.PL.orig 2005-04-14 12:11:54.000000000 +0200
+++ ./Makefile.PL 2005-04-14 12:12:09.000000000 +0200
@@ -8,4 +8,5 @@ WriteMakefile(
DIST_DEFAULT => 'all tardist',
},
MAN3PODS => {},
+ INSTALLDIRS => 'perl',
);