Put '.' last in @INC, not first
Dagfinn Ilmari Mannsåker [Wed, 14 Mar 2018 12:43:55 +0000 (12:43 +0000)]
Makefile.PL

index f1c0d29..bf23827 100644 (file)
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use lib '.';
+BEGIN { push @INC, '.' unless $INC[-1] eq '.'; }
 
 use inc::Module::Install 0.91;
 use Module::Install::AuthorRequires;