diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-10-15 00:34:31 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-10-15 00:36:39 +0200 |
commit | e97552ae310209e2a500b3dc56890ad35f787d62 (patch) | |
tree | 1e9aa949a61346ba5943c0538d60ca0c53d5b7d2 /urpm/args.pm | |
parent | 0bd44916e72080783c6eb8442533bc683c28c8f7 (diff) | |
download | urpmi-e97552ae310209e2a500b3dc56890ad35f787d62.tar urpmi-e97552ae310209e2a500b3dc56890ad35f787d62.tar.gz urpmi-e97552ae310209e2a500b3dc56890ad35f787d62.tar.bz2 urpmi-e97552ae310209e2a500b3dc56890ad35f787d62.tar.xz urpmi-e97552ae310209e2a500b3dc56890ad35f787d62.zip |
fix more Getopt::Long breakages
now testuite pass again after droping the "gnu_compat" option
Diffstat (limited to 'urpm/args.pm')
-rw-r--r-- | urpm/args.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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); |