diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2025-05-03 13:27:58 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2025-05-03 13:31:31 +0000 |
commit | 070450648bd76fe5c9e750dcb814e56b666a7b9a (patch) | |
tree | 731b659c0d2a99987ced3fe4459a61fb614c2158 | |
parent | 9155da3b42a08c3e056b60b3782a4bd950b2314c (diff) |
games/frozen-bubble: fix build with Perl 5.38+
PR: 286309
-rw-r--r-- | games/frozen-bubble/files/patch-inc_My_Builder.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games/frozen-bubble/files/patch-inc_My_Builder.pm b/games/frozen-bubble/files/patch-inc_My_Builder.pm new file mode 100644 index 000000000000..4c3aeb4eda2b --- /dev/null +++ b/games/frozen-bubble/files/patch-inc_My_Builder.pm @@ -0,0 +1,11 @@ +--- inc/My/Builder.pm.orig 2025-05-03 13:20:23 UTC ++++ inc/My/Builder.pm +@@ -8,7 +8,7 @@ use IO::File qw(); + use File::Slurp qw(read_file write_file); + use File::Spec::Functions qw(catdir catfile rootdir); + use IO::File qw(); +-use Module::Build '0.36' => qw(); ++use Module::Build qw(); + use autodie qw(:all move read_file write_file); + use parent 'Module::Build'; + use Locale::Maketext::Extract; |