Skip Menu |

This queue is for tickets about the Object-Signature CPAN distribution.

Report information
The Basics
Id: 121738
Status: resolved
Priority: 0/
Queue: Object-Signature

People
Owner: Nobody in particular
Requestors: ppisar [...] redhat.com
Cc:
AdminCc:

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



Subject: Makefile.PL fails on Perl without "." in @INC
Perl 5.26.0 removes "." from @INC and Makefile.PL fails: $ perl Makefile.PL Can't locate inc/Module/Install/DSL.pm in @INC (you may need to install the inc::Module::Install::DSL module) (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at Makefile.PL line 1. BEGIN failed--compilation aborted at Makefile.PL line 1. A fix is attached. Another solution is not to use inc::Module:Install at all.
Subject: Object-Signature-1.07-Fix-building-on-Perl-without-.-in-INC.patch
From 54bef984e048890c9240a9ea0d6a41e257507e8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> Date: Wed, 17 May 2017 13:10:44 +0200 Subject: [PATCH] Fix building on Perl without "." in @INC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Písař <ppisar@redhat.com> --- Makefile.PL | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.PL b/Makefile.PL index c6b0513..18dda65 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,3 +1,4 @@ +BEGIN { push @INC, '.' } use inc::Module::Install::DSL 1.00; name Object-Signature -- 2.9.4
Fixed in 1.08.