From: Graham Knop Date: Sun, 16 Oct 2016 11:36:05 +0000 (-0400) Subject: avoid needing . in @INC in dev mode X-Git-Tag: v1.003006~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FEval-WithLexicals.git;a=commitdiff_plain;h=4475b603333c8fb610ee1d802af0a006be4062bb avoid needing . in @INC in dev mode --- diff --git a/Makefile.PL b/Makefile.PL index dd4131c..b24d5be 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -47,7 +47,7 @@ my %MM_ARGS = ( ## BOILERPLATE ############################################################### require ExtUtils::MakeMaker; -(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; +(do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; # have to do this since old EUMM dev releases miss the eval $VERSION line my $eumm_version = eval $ExtUtils::MakeMaker::VERSION;