Skip Menu |

This queue is for tickets about the HTML-Tabulate CPAN distribution.

Report information
The Basics
Id: 129145
Status: new
Priority: 0/
Queue: HTML-Tabulate

People
Owner: Nobody in particular
Requestors: steve [...] deefs.net
Cc:
AdminCc:

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



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';