From: Graham Knop Date: Sat, 15 Oct 2016 21:04:51 +0000 (-0400) Subject: avoid needing . in @INC in dev mode X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FAlgorithm-C3.git;a=commitdiff_plain;h=2e659e7bc2f65e80a9e8ec8fc6d028213e464562 avoid needing . in @INC in dev mode --- diff --git a/Makefile.PL b/Makefile.PL index 1e738fe..0ba3f6d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,7 +2,7 @@ use strict; use warnings FATAL => 'all'; use 5.006; 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 %BUILD_DEPS = ( 'Test::More' => 0.47,