Skip Menu |

This queue is for tickets about the String-CamelCase CPAN distribution.

Report information
The Basics
Id: 127030
Status: new
Priority: 0/
Queue: String-CamelCase

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

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



Subject: perl Makfile.PL fails on 5.26 and above
This is because . is not in @INC by default. The fix is to apply this change to Makefile.PL
Subject: camel.patch.txt
diff --git a/Makefile.PL b/Makefile.PL index 19d495e39..a8f99d7c9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,8 @@ use strict; use warnings; use ExtUtils::MakeMaker; + +BEGIN { push @INC, '.' unless $INC[-1] eq '.' } use inc::ExtUtils::MY_Metafile qw(my_metafile); my_metafile {