diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | urpm/args.pm | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- fix more Getopt::Long breakages (drop the "gnu_compat" option) + Version 8.103 - 11 July 2016 - fix reporting progress with newer aria2 (mga#16500) diff --git a/urpm/args.pm b/urpm/args.pm index d6d49f62..2f4ec5d7 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 no_ignore_case permute); +my @configuration = qw(bundling no_ignore_case permute); push @configuration, 'pass_through' if $tool eq 'urpmf' || $tool eq 'urpmi.addmedia'; Getopt::Long::Configure(@configuration); |