summaryrefslogtreecommitdiffstats
path: root/urpmq
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2009-08-11 10:10:13 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2009-08-11 10:10:13 +0000
commit6feb35ba96432ca39ee6a076cab7d4b2c29dd264 (patch)
tree2064880f05d16a00b802b497bdb9c18985526a72 /urpmq
parentcf70df94745e7a2b23460ecfe98d864f2b5eef58 (diff)
downloadurpmi-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
Diffstat (limited to 'urpmq')
-rwxr-xr-xurpmq3
1 files changed, 2 insertions, 1 deletions
diff --git a/urpmq b/urpmq
index 0d0b6ddd..11c0912d 100755
--- a/urpmq
+++ b/urpmq
@@ -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;