Skip Menu |

This queue is for tickets about the DBIx-Class-Tree CPAN distribution.

Report information
The Basics
Id: 122066
Status: open
Priority: 0/
Queue: DBIx-Class-Tree

People
Owner: Nobody in particular
Requestors: racke [...] linuxia.de
Cc:
AdminCc:

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



Subject: Fix broken install caused by removal of . from @INC in Perl 5.26
Subject: fix-inc.patch
commit 76befee5ae7d3d8af246530446b04825d80d4f8f Author: Stefan Hornburg (Racke) <racke@linuxia.de> Date: Sat Jun 10 16:28:38 2017 +0200 Fix for missing current directory in @INC. diff --git a/Makefile.PL b/Makefile.PL index 5089f55..fd72f01 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,8 @@ use inc::Module::Install; BEGIN { + push @INC, "."; + if ($Module::Install::AUTHOR) { require Module::Install::ReadmeFromPod; }
Works for me under 5.26.2. Didn't the toolchain handle this so not every module needs to be updated?