From: Graham Knop Date: Mon, 17 Oct 2016 15:37:52 +0000 (-0400) Subject: avoid needing . in @INC in dev mode X-Git-Tag: v1.000006~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FSafe-Isa.git;a=commitdiff_plain;h=f11115fb43dd820ef557c7d0d00be85d88eeacca avoid needing . in @INC in dev mode --- diff --git a/Makefile.PL b/Makefile.PL index abfc0e1..f9338f5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,7 +2,7 @@ use strict; use warnings FATAL => 'all'; use 5.008001; 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'; my %WriteMakefileArgs = ( NAME => 'Safe::Isa',