From: Graham Knop Date: Sat, 28 Dec 2019 19:36:40 +0000 (+0100) Subject: add inc to lib path in Makefile.PL to avoid Module::Install trying to reload files X-Git-Tag: 1.41~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Devel.git;a=commitdiff_plain;h=684be1c43567609db6f8ff8b5fade602c30d6ddb add inc to lib path in Makefile.PL to avoid Module::Install trying to reload files --- diff --git a/Makefile.PL b/Makefile.PL index ade0d9e..14a471e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,7 @@ use strict; use warnings; use lib '.'; +use lib 'inc'; use inc::Module::Install 0.91; use Module::Install::AuthorRequires; use Module::Install::AuthorTests;