From: Graham Knop Date: Sat, 15 Oct 2016 21:09:09 +0000 (-0400) Subject: avoid needing . in @INC in dev mode X-Git-Tag: v1.001000~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e2439657cecc7f65ae987c229f183f6f4693a7af;p=p5sagit%2Fcurry.git avoid needing . in @INC in dev mode --- diff --git a/Makefile.PL b/Makefile.PL index 918cd8c..cc44ed4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,7 +2,7 @@ use strict; use warnings FATAL => 'all'; use ExtUtils::MakeMaker; -(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; +(do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; WriteMakefile( NAME => 'curry',