From: Graham Knop Date: Sat, 15 Oct 2016 21:07:13 +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=1915f1de9f113ada24cfd55753612351443f492a;p=gitmo%2FClass-C3.git avoid needing . in @INC in dev mode --- diff --git a/Makefile.PL b/Makefile.PL index 309b02e..a399b45 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -67,7 +67,7 @@ sub is_smoker { ## 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;