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 {