Subject: | Install fails when '.' isn't in @INC |
This is the default in Perl 5.26, and I ran into the issue using the 5.24.1 system perl on Debian 9.7.
The following patch fixes the problem:
*** ../HTML-Tabulate-0.45/Makefile.PL Thu Feb 18 20:27:02 2016
--- Makefile.PL Thu Apr 11 22:02:31 2019
***************
*** 1,5 ****
--- 1,7 ----
use 5.005;
+ use lib '.';
use inc::Module::Install;
+ no lib '.';
name 'HTML-Tabulate';
all_from 'Tabulate.pm';