From: Graham Knop Date: Mon, 17 Oct 2016 15:38:07 +0000 (-0400) Subject: avoid needing . in @INC in dev mode X-Git-Tag: v2.000004~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0446b591267fddfd7e9c96d35e9cab55dcc06d18;p=p5sagit%2Fstrictures.git avoid needing . in @INC in dev mode --- diff --git a/Makefile.PL b/Makefile.PL index 9a1774a..e9e1697 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -76,7 +76,7 @@ sub parse_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;