Skip Menu |

This queue is for tickets about the Compress-Zlib CPAN distribution.

Report information
The Basics
Id: 35341
Status: resolved
Priority: 0/
Queue: Compress-Zlib

People
Owner: Nobody in particular
Requestors: jdhedden [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 2.009
Fixed in: 2.010



Subject: [PATCH] Improper installation under 5.10
The 5.10.x distribution has the Compress-Zlib 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: Compress-Zlib.patch
--- Compress-Zlib-2.009/Makefile.PL +++ Compress-Zlib-2.009/Makefile.PL @@ -44,6 +44,7 @@ ), INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'), + INST_LIB => 'blib/arch', ((ExtUtils::MakeMaker->VERSION() gt '6.30') ? ('LICENSE' => 'perl') : ()),