From: Graham Knop Date: Sat, 15 Oct 2016 21:12:36 +0000 (-0400) Subject: avoid needing . in @INC in dev mode X-Git-Tag: v0.14~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-GlobalDestruction.git;a=commitdiff_plain;h=6457c6f4b93323101e89134fcc54b06cece7d4bd avoid needing . in @INC in dev mode --- diff --git a/Makefile.PL b/Makefile.PL index e62347b..4efd997 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -76,7 +76,7 @@ pure_site_install :: ## 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;