summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--urpm/args.pm2
2 files changed, 2 insertions, 1 deletions
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);