From: Graham Knop Date: Sun, 16 Oct 2016 12:41:11 +0000 (-0400) Subject: avoid needing . in @INC in dev mode X-Git-Tag: v0.004001~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=commitdiff_plain;h=bfe941496ac54c065d31988315bdbf3798471d08;hp=5b9cd8ab2970b24b19f6627c2f7643d2018127f8 avoid needing . in @INC in dev mode --- diff --git a/Makefile.PL b/Makefile.PL index 26f50de..064303a 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 => 'Object::Remote',