diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-08-27 17:26:49 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-09-05 07:26:15 +0200 |
commit | bc7e830670503a7b51e5a89aedbbcbb78e14abc8 (patch) | |
tree | 40ebe7c666493a31efad5f63cac7838a0f88143b /urpmq | |
parent | b6ceabcd87f7d9522658d9ff66b860838b48739c (diff) | |
download | urpmi-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-x | urpmq | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |