ports/devel/p5-Parallel-Prefork/patches/patch-Makefile_PL

10 lines
212 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Fix for 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;
all_from 'lib/Parallel/Prefork.pm';