Skip Menu |

This queue is for tickets about the Catalyst-Model-LDAP CPAN distribution.

Report information
The Basics
Id: 121879
Status: resolved
Priority: 0/
Queue: Catalyst-Model-LDAP

People
Owner: Nobody in particular
Requestors: jplesnik [...] redhat.com
Cc:
AdminCc:

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



Subject: Fails install when no '.' in @INC
On 5.26.0-RC1 , where '.' is not in @INC by default: + cd Catalyst-Model-LDAP-0.17 + perl Makefile.PL INSTALLDIRS=vendor Can't locate inc/Module/Install.pm in @INC (you may need to install the inc::Module::Install module) (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at Makefile.PL line 1.
On Thu May 25 04:38:10 2017, jplesnik wrote: Show quoted text
> On 5.26.0-RC1 , where '.' is not in @INC by default: > > + cd Catalyst-Model-LDAP-0.17 > + perl Makefile.PL INSTALLDIRS=vendor > Can't locate inc/Module/Install.pm in @INC (you may need to install > the inc::Module::Install module) (@INC contains: > /usr/local/lib64/perl5 /usr/local/share/perl5 > /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl > /usr/lib64/perl5 /usr/share/perl5) at Makefile.PL line 1.
Patch?
From: jplesnik [...] redhat.com
On Mon Jun 26 07:01:57 2017, GHENRY wrote: Show quoted text
> On Thu May 25 04:38:10 2017, jplesnik wrote:
> > On 5.26.0-RC1 , where '.' is not in @INC by default: > > > > + cd Catalyst-Model-LDAP-0.17 > > + perl Makefile.PL INSTALLDIRS=vendor > > Can't locate inc/Module/Install.pm in @INC (you may need to install > > the inc::Module::Install module) (@INC contains: > > /usr/local/lib64/perl5 /usr/local/share/perl5 > > /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl > > /usr/lib64/perl5 /usr/share/perl5) at Makefile.PL line 1.
> > Patch?
This patch works for me.
Subject: Catalyst-Model-LDAP-0.17-Fix-building-on-Perl-without-dot-in-INC.patch
diff -up Catalyst-Model-LDAP-0.17/Makefile.PL.orig Catalyst-Model-LDAP-0.17/Makefile.PL --- Catalyst-Model-LDAP-0.17/Makefile.PL.orig 2017-06-26 13:42:08.942343160 +0200 +++ Catalyst-Model-LDAP-0.17/Makefile.PL 2017-06-26 13:43:30.440840670 +0200 @@ -1,3 +1,4 @@ +use lib '.'; use inc::Module::Install 0.87; perl_version '5.8.1';
New version realeased. Switched to Dist:Zilla.