Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Pod-Simple CPAN distribution.

Report information
The Basics
Id: 36446
Status: resolved
Priority: 0/
Queue: Pod-Simple

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

Bug Information
Severity: Important
Broken in: 3.06
Fixed in: (no value)



Subject: [PATCH] Install in correct location for Perl >= 5.9.3
Pod-Simple is now a core Perl module. However, the CPAN distribution updates into the 'site' dirs. Because the core dirs come before the site dirs in @INC, the newer version is not used. The attached patch corrects this.
Subject: patch.txt
--- Pod-Simple-3.06/Makefile.PL +++ Pod-Simple-3.06/Makefile.PL @@ -29,6 +29,8 @@ constant integer File::Find ] }, + + INSTALLDIRS => $] >= 5.009003 ? 'perl' : 'site', );
thanks, applied in svn