From: Graham Knop Date: Mon, 17 Oct 2016 15:37:25 +0000 (-0400) Subject: avoid needing . in @INC in dev mode X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c44d55d4e8480bf9f2f2d4b6b0425f14829eacf5;p=p5sagit%2FPackage-Variant.git avoid needing . in @INC in dev mode --- diff --git a/Makefile.PL b/Makefile.PL index a0d0972..9dda482 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -35,7 +35,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;