Subject: | [PATCH] Improper installation under 5.10 |
The 5.10.x distribution has the IO-Compress-Base files installed in the
architecture dependent dirs. Updating from CPAN places the new files
under the architecture independent dirs which are masked by the
architecture dependent dirs because of their order of @INC. Therefore,
the update is masked by the older version.
The attached patch to Makefile.PL corrects this.
Subject: | IO-Compress-Base.patch |
--- IO-Compress-Base-2.009/Makefile.PL
+++ IO-Compress-Base-2.009/Makefile.PL
@@ -36,6 +36,7 @@
),
INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'),
+ INST_LIB => 'blib/arch',
((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
('LICENSE' => 'perl') : ()),