summaryrefslogtreecommitdiffstats
path: root/urpmq
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-08-27 17:26:49 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-09-05 07:26:15 +0200
commitbc7e830670503a7b51e5a89aedbbcbb78e14abc8 (patch)
tree40ebe7c666493a31efad5f63cac7838a0f88143b /urpmq
parentb6ceabcd87f7d9522658d9ff66b860838b48739c (diff)
downloadurpmi-bc7e830670503a7b51e5a89aedbbcbb78e14abc8.tar
urpmi-bc7e830670503a7b51e5a89aedbbcbb78e14abc8.tar.gz
urpmi-bc7e830670503a7b51e5a89aedbbcbb78e14abc8.tar.bz2
urpmi-bc7e830670503a7b51e5a89aedbbcbb78e14abc8.tar.xz
urpmi-bc7e830670503a7b51e5a89aedbbcbb78e14abc8.zip
rename 'no_suggests' parameter as 'no_recommends'
Diffstat (limited to 'urpmq')
-rwxr-xr-xurpmq4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpmq b/urpmq
index acd3ec44..82fd93e5 100755
--- a/urpmq
+++ b/urpmq
@@ -365,7 +365,7 @@ if ($options{list_aliases}) {
keep => $options{keep},
rpmdb => $options{env} && "$options{env}/rpmdb.cz",
auto_select => $options{auto_select},
- no_suggests => $urpm->{options}{'no-suggests'},
+ no_recommends => $urpm->{options}{'no-suggests'},
callback_choices => $stop_on_choices);
$options{deps} or delete @{$state->{selected}}{grep { exists $state->{selected}{$_} &&
! defined $state->{selected}{$_} } keys %{$state->{selected}}};
@@ -373,7 +373,7 @@ if ($options{list_aliases}) {
#- only deps required.
my $empty_db = URPM->new; #- URPM has same methods as URPM::DB and empty URPM will be seen as empty URPM::DB.
$urpm->resolve_requested($empty_db, $state, \%requested,
- no_suggests => $urpm->{options}{'no-suggests'},
+ no_recommends => $urpm->{options}{'no-suggests'},
callback_choices => $stop_on_choices, nodeps => 1);
} else {
$state->{selected} = \%requested;