From 20122ef19e7b67c5a5e98967251994342818a71d Mon Sep 17 00:00:00 2001 From: Todd Rinaldo Date: Mon, 3 Sep 2018 22:50:14 -0500 Subject: [PATCH] Add . to @INC for Makefile.PL Fixes RT 127031 --- Makefile.PL | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.PL b/Makefile.PL index cc3a7f7..b2bde45 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,3 +1,4 @@ +BEGIN { push @INC, '.' unless $INC[-1] eq '.' } use strict; use inc::Module::Install;