Skip Menu |

This queue is for tickets about the Unicode-EastAsianWidth CPAN distribution.

Report information
The Basics
Id: 120750
Status: new
Priority: 0/
Queue: Unicode-EastAsianWidth

People
Owner: Nobody in particular
Requestors: KENTNL [...] cpan.org
Cc:
AdminCc:

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



Subject: Fails install when no '.' in @INC
On 5.25.11 , where -Ddefault_inc_excludes_dot is now default:

Can't locate inc/Module/Package.pm in @INC (you may need to install the inc::Module::Package module) (@INC contains: /etc/perl /usr/local/lib64/perl5/5.25.11/x86_64-linux /usr/local/lib64/perl5/5.25.11 /usr/lib64/perl5/vendor_perl/5.25.11/x86_64-linux /usr/lib64/perl5/vendor_perl/5.25.11 /usr/local/lib64/perl5 /usr/lib64/perl5/vendor_perl/5.22.3 /usr/lib64/perl5/vendor_perl/5.25.11/x86_64-linux /usr/lib64/perl5/vendor_perl/5.25.11 /usr/lib64/perl5/vendor_perl /usr/lib64/perl5/5.25.11/x86_64-linux /usr/lib64/perl5/5.25.11) at Makefile.PL line 3.
BEGIN failed--compilation aborted at Makefile.PL line 3.


-- 
- CPAN kentnl@cpan.org
- Gentoo Perl Maintainer kentnl@gentoo.org ( perl@gentoo.org )
This strategy seems suitable for Module::Package, unlike MI which is more specialer

-- 
- CPAN kentnl@cpan.org
- Gentoo Perl Maintainer kentnl@gentoo.org ( perl@gentoo.org )
Subject: 0001-Fix-for-Perl-5.26-w-o-.-in-INC.patch
From 9cb5f1551566addf37a47e935164519842bab0d8 Mon Sep 17 00:00:00 2001 From: Kent Fredric <kentfredric@gmail.com> Date: Sun, 11 Jun 2017 16:10:47 +1200 Subject: [PATCH] Fix for Perl 5.26 w/o '.' in @INC --- Makefile.PL | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 6745b7c..2db030d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,7 @@ #!/usr/bin/perl use strict; -use inc::Module::Package 'Au:dry 1'; +use lib './inc'; +use Module::Package 'Au:dry 1'; my $DefaultVersion = 'v5.0.0'; my $DefaultDate = '2006-02-15'; -- 2.13.1