Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9456/lib/Module/Build
Modified Files:
Base.pm
Log Message:
Revert my previous change honoring $Config{installstyle} when the install_base options is used. I had forgotten that this issue had been discussed and the previous behavior was prefered.
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.495
retrieving revision 1.496
diff -u -d -r1.495 -r1.496
--- Base.pm 3 Oct 2005 09:55:25 -0000 1.495
+++ Base.pm 3 Oct 2005 18:19:02 -0000 1.496
@@ -182,7 +182,6 @@
my @libstyle = $c->{installstyle} ?
File::Spec->splitdir($c->{installstyle}) : qw(lib perl5);
-
my $arch = $c->{archname};
my $version = $c->{version};
@@ -236,8 +235,8 @@
$p->{install_base_relpaths} =
{
- lib => [@libstyle],
- arch => [@libstyle, $arch],
+ lib => ['lib', 'perl5'],
+ arch => ['lib', 'perl5', $arch],
bin => ['bin'],
script => ['bin'],
bindoc => ['man', 'man1'],
|