From c64a6c718adf88b4adc3d0105a2e2c7a28709bc1 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Mon, 11 Jul 2016 12:42:10 +0200 Subject: add 'no_ignore_case' to Getopt options (mga#17923) thus fixing t/superuser--orphans.t regressions --- NEWS | 1 + urpm/args.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 535d0bfb..6dbd1523 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,5 @@ - fix reporting progress with newer aria2 (mga#16500) +- fix Getopt::Long 4.60+ breakages (mga#17923) - s/suggests/recommends/ in bash completion Version 8.102 - 14 April 2016 diff --git a/urpm/args.pm b/urpm/args.pm index ac38bfc8..d6d49f62 100644 --- a/urpm/args.pm +++ b/urpm/args.pm @@ -18,7 +18,7 @@ our @EXPORT = '%options'; # Configuration of Getopt. urpmf is a special case, because we need to # parse non-alphanumerical options (-! -( -)) -my @configuration = qw(bundling gnu_compat permute); +my @configuration = qw(bundling gnu_compat no_ignore_case permute); push @configuration, 'pass_through' if $tool eq 'urpmf' || $tool eq 'urpmi.addmedia'; Getopt::Long::Configure(@configuration); -- cgit v1.2.1