diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-08-11 10:10:13 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-08-11 10:10:13 +0000 |
commit | 6feb35ba96432ca39ee6a076cab7d4b2c29dd264 (patch) | |
tree | 2064880f05d16a00b802b497bdb9c18985526a72 | |
parent | cf70df94745e7a2b23460ecfe98d864f2b5eef58 (diff) | |
download | urpmi-6feb35ba96432ca39ee6a076cab7d4b2c29dd264.tar urpmi-6feb35ba96432ca39ee6a076cab7d4b2c29dd264.tar.gz urpmi-6feb35ba96432ca39ee6a076cab7d4b2c29dd264.tar.bz2 urpmi-6feb35ba96432ca39ee6a076cab7d4b2c29dd264.tar.xz urpmi-6feb35ba96432ca39ee6a076cab7d4b2c29dd264.zip |
urpmq: add support for -a option combined with --src
Fixes bug #52672
-rwxr-xr-x | urpmq | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -260,13 +260,14 @@ if ($options{list_aliases}) { use_provides => $options{use_provides}, fuzzy => $urpm->{options}{fuzzy}, caseinsensitive => $options{caseinsensitive}, + all => $options{all}, %more_options, ); }; #- search the packages according to the selection given by the user. if (@names) { - $search_packages->(\@names, all => $options{all}) or $options{force} or exit 1; + $search_packages->(\@names) or $options{force} or exit 1; } if (@src_names) { $search_packages->(\@src_names, src => 1) or $options{force} or exit 1; |