From: Eric Wong Date: Fri, 25 Oct 2024 03:19:57 +0000 (+0000) Subject: learn: use Perl 5.12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3bf588bddfd6ffd419a589f42281379d3e84629a;p=thirdparty%2Fpublic-inbox.git learn: use Perl 5.12 No `unicode_strings' feature dependencies, here, so it's safe to get rid of the extra overhead required in loading strict.pm. --- diff --git a/script/public-inbox-learn b/script/public-inbox-learn index 12a82de99..b7f98dcc9 100755 --- a/script/public-inbox-learn +++ b/script/public-inbox-learn @@ -20,7 +20,7 @@ options: See public-inbox-learn(1) man page for full documentation. EOF -use strict; +use v5.12; use PublicInbox::Config; use PublicInbox::InboxWritable; use PublicInbox::Eml;