From 35f8711c914da2b5549b7cd249499fc5aeef0cd0 Mon Sep 17 00:00:00 2001 From: Elvin Aslanov Date: Sat, 28 Oct 2023 19:16:43 +0200 Subject: [PATCH] enc2xs: Fix indirect syntax As the indirect object syntax in discouraged --- bin/enc2xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/enc2xs b/bin/enc2xs index 3fa437e..e2cf101 100755 --- a/bin/enc2xs +++ b/bin/enc2xs @@ -3,7 +3,7 @@ BEGIN { # @INC poking no longer needed w/ new MakeMaker and Makefile.PL's # with $ENV{PERL_CORE} set # In case we need it in future... - require Config; import Config; + require Config; Config->import; pop @INC if $INC[-1] eq '.'; } use strict;