diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2010-05-17 16:40:33 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2010-05-17 16:40:33 +0000 |
commit | 5df347c095c227c4a03520ccc3dce5eb3107a7f9 (patch) | |
tree | a29096cdc46a103b537997bee3f9de5ffb1fa48e /urpmq | |
parent | 5624fe17bd57d3ea84c56d949b7e2b5073d301f1 (diff) | |
download | urpmi-5df347c095c227c4a03520ccc3dce5eb3107a7f9.tar urpmi-5df347c095c227c4a03520ccc3dce5eb3107a7f9.tar.gz urpmi-5df347c095c227c4a03520ccc3dce5eb3107a7f9.tar.bz2 urpmi-5df347c095c227c4a03520ccc3dce5eb3107a7f9.tar.xz urpmi-5df347c095c227c4a03520ccc3dce5eb3107a7f9.zip |
urpmq: allow to use -g with --list
Diffstat (limited to 'urpmq')
-rwxr-xr-x | urpmq | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -131,7 +131,7 @@ my $urpm = urpm->new_parse_cmdline or exit(1); $urpm->{info} = sub { print STDERR "$_[0]\n" }; $urpm->{log} = sub { print STDERR "$_[0]\n" } if $options{verbose} > 0; -my $only_list_name = $options{list} && !($options{version} || $options{release} || $options{arch}); +my $only_list_name = $options{list} && !($options{version} || $options{release} || $options{arch}) || $options{group}; #- improve speed if using any list_... options. $options{nodepslist} = $options{list_aliases} |