Skip Menu |

This queue is for tickets about the IPC-Cmd CPAN distribution.

Report information
The Basics
Id: 83738
Status: resolved
Priority: 0/
Queue: IPC-Cmd

People
Owner: Nobody in particular
Requestors: tzccinct+bitcard [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.80
Fixed in: 0.84



Subject: INSTALLDIRS should be site when > perl 5.11
Hi, According to "Bug #57201 for CPANPLUS: installdirs should be site when > perl 5.11" https://rt.cpan.org/Public/Bug/Display.html?id=57201 Show quoted text
> As of 5.12, site_lib comes before the perl core libraries in @INC. > All dual life modules should install to site_lib if installed from CPAN. > Link to p5p thread on this topic. >
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2010-04/msg01353.html So you should change Makefile.PL as below: - INSTALLDIRS => ( $] >= 5.009005 ? 'perl' : 'site' ), + INSTALLDIRS => ( $] >= 5.009005 && $] <= 5.011000 ? 'perl' : 'site' ),
From: tzccinct+bitcard [...] gmail.com
This bug has been fixed in IPC-Cmd 0.84. INSTALLDIRS => ( $] >= 5.009005 && $] < 5.012 ? 'perl' : 'site' ),
Documented as fixed - closing!