Subject: | DBIx::Class: Configuration fails with Perl 5 blead due to no-dot-by-default-in-@INC |
Due to the removal of '.' from the default @INC in perl-5.26.0, your Makefile.PL will need to be revised to locate inc::Module::Install. Here's what I got today in the 'master' branch:
#####
$ /home/jkeenan/testing/blead/bin/perl -I /home/jkeenan/testing/blead/lib Makefile.PL
Can't locate inc/Module/Install.pm in @INC (you may need to install the inc::Module::Install module) (@INC contains: /home/jkeenan/testing/blead/lib /home/jkeenan/testing/blead/lib/perl5/site_perl/5.25.11/x86_64-linux /home/jkeenan/testing/blead/lib/perl5/site_perl/5.25.11 /home/jkeenan/testing/blead/lib/perl5/5.25.11/x86_64-linux /home/jkeenan/testing/blead/lib/perl5/5.25.11) at Makefile.PL line 5.
BEGIN failed--compilation aborted at Makefile.PL line 5.
#####
A simple "use lib '.';" should suffice.
Thank you very much.
Jim Keenan