From: Karen Etheridge Date: Fri, 17 Mar 2017 18:20:11 +0000 (-0700) Subject: avoid relying on . being in @INC X-Git-Tag: v0.006019~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-Declare.git;a=commitdiff_plain;h=1b03d58cdb9ebbdb8cf73392435e9a73f23f0269 avoid relying on . being in @INC --- diff --git a/Makefile.PL b/Makefile.PL index 5ef9cee..ed7fd06 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,7 @@ use warnings FATAL => 'all'; use 5.008001; use ExtUtils::MakeMaker; -(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; +(do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; use ExtUtils::Depends; my $pkg = ExtUtils::Depends->new('Devel::Declare', 'B::Hooks::OP::Check');