9 lines
203 B
Text
9 lines
203 B
Text
Fix in perl 5.26.0+ (no . in @inc by default)
|
|
Index: Makefile.PL
|
|
--- Makefile.PL.orig
|
|
+++ Makefile.PL
|
|
@@ -1,3 +1,4 @@
|
|
+BEGIN { push @INC, '.'; }
|
|
use inc::Module::Install;
|
|
|
|
perl_version '5.008001';
|