Subject: | Sys-Info: Configuration fails on perl 5 blead: no dot in default @INC |
In Perl 5.26.0, '.' will no longer be found by default in @INC. One consequence of this is that in statements such as:
do $file;
will fail if $file is simply 'some_file'. It will have to be './some_file'.
Attached is a patch that will enable Makefile.PL to complete successfully. Please evaluate and, if it is acceptable, generate a new CPAN release.
Thank you very much.
Jim Keenan
Subject: | Sys-Info.20170402.diff |
--- builder/Build/Spec.pm.orig 2017-04-02 21:06:57.323956342 -0400
+++ builder/Build/Spec.pm 2017-04-02 21:08:10.471136769 -0400
@@ -17,7 +17,7 @@
}
sub spec {
- my $file = 'SPEC';
+ my $file = './SPEC';
my $spec = do $file;
my %rv =