Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28771/lib/Module/Build
Modified Files:
Base.pm
Log Message:
Mention why we don't use 'installstyle'
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.496
retrieving revision 1.497
diff -u -d -r1.496 -r1.497
--- Base.pm 3 Oct 2005 18:19:02 -0000 1.496
+++ Base.pm 4 Oct 2005 02:44:09 -0000 1.497
@@ -233,6 +233,10 @@
};
$p->{original_prefix}{site} ||= $p->{original_prefix}{core};
+ # Note: you might be tempted to use $Config{installstyle} here
+ # instead of hard-coding lib/perl5, but that's been considered and
+ # (at least for now) rejected. `perldoc Config` has some wisdom
+ # about it.
$p->{install_base_relpaths} =
{
lib => ['lib', 'perl5'],
|