mirror of https://git.FreeBSD.org/ports.git
lang/perl5.42: silence Getopt::Long duplicate‐spec warning in json_pp
PR: 286820
This commit is contained in:
parent
0716259099
commit
07162600cd
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= perl
|
||||
DISTVERSION= ${PERL_VERSION}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang devel perl5
|
||||
MASTER_SITES= CPAN/../../src/5.0 CPAN/../by-authors/id/B/BO/BOOK
|
||||
DIST_SUBDIR= perl
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
Silence Getopt::Long warning
|
||||
|
||||
--- cpan/JSON-PP/bin/json_pp.orig 2025-05-15 13:39:16 UTC
|
||||
+++ cpan/JSON-PP/bin/json_pp
|
||||
@@ -2,7 +2,7 @@ use strict;
|
||||
|
||||
BEGIN { pop @INC if $INC[-1] eq '.' }
|
||||
use strict;
|
||||
-use Getopt::Long;
|
||||
+use Getopt::Long qw( :config no_ignore_case );
|
||||
use Encode ();
|
||||
|
||||
use JSON::PP ();
|
Loading…
Reference in New Issue