From: Graham Knop <haarg@haarg.org>
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?a=commitdiff_plain;h=HEAD;p=gitmo%2FAlgorithm-C3.git

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,