From: Graham Knop Date: Sun, 16 Oct 2016 11:40:51 +0000 (-0400) Subject: avoid needing . in @INC in dev mode X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FImport-Into.git;a=commitdiff_plain;h=b899a91f469e345f6726de9e894b92f5dcbaad35 avoid needing . in @INC in dev mode --- diff --git a/Makefile.PL b/Makefile.PL index 1be6a00..069e38f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -46,7 +46,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;