Subject: | Configuration fails with Perl 5 blead due to no-dot-by-default-in-@INC |
In Perl 5.26.0, '.' will no longer be found by default in @INC. Makefile.PL needs to be modified to accommodate this change. Please review the patch attached.
Thank you very much.
Jim Keenan
Subject: | Class-Accessor-Grouped.diff |
--- Makefile.PL.orig 2017-03-31 23:03:58.727749208 -0400
+++ Makefile.PL 2017-03-31 23:04:06.883193264 -0400
@@ -1,5 +1,6 @@
use strict;
use warnings;
+use lib '.';
use inc::Module::Install 1.06;
name 'Class-Accessor-Grouped';