diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-09-07 03:43:25 +0200 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2014-10-20 21:29:56 +0000 |
commit | 58c61943ef3825bf7228d0ea98a5eda3be7c7b23 (patch) | |
tree | 378aba07a3b0ec8e641eaff0c4f9c533736adf76 /perl-install/install/steps_interactive.pm | |
parent | 7df6ec8f9e5d3ad76f5584e775f37b99125be671 (diff) | |
download | drakx-58c61943ef3825bf7228d0ea98a5eda3be7c7b23.tar drakx-58c61943ef3825bf7228d0ea98a5eda3be7c7b23.tar.gz drakx-58c61943ef3825bf7228d0ea98a5eda3be7c7b23.tar.bz2 drakx-58c61943ef3825bf7228d0ea98a5eda3be7c7b23.tar.xz drakx-58c61943ef3825bf7228d0ea98a5eda3be7c7b23.zip |
rename "no_suggests" option as "no_recommends"
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r-- | perl-install/install/steps_interactive.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index ca552ff14..e03cd2480 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -567,7 +567,7 @@ sub offer_minimal_options { my ($o) = @_; my $docs = !$o->{excludedocs}; state $minimal; - my $suggests = !$o->{no_suggests}; + my $suggests = !$o->{no_recommends}; $o->ask_from_({ title => N("Type of install"), message => N("You have not selected any group of packages. @@ -588,9 +588,9 @@ Please choose the minimal installation you want:"), } $o->{excludedocs} = !$docs; $o->{rpmsrate_flags_chosen}{CAT_MINIMAL_DOCS} = $docs; - $o->{no_suggests} = !$suggests; + $o->{no_recommends} = !$suggests; $o->{compssListLevel} = pkgs::rpmsrate_rate_max() if !$suggests; - log::l("install settings: no_suggests=$o->{no_suggests}, excludedocs=$o->{excludedocs}, really_minimal_install=$minimal"); + log::l("install settings: no_recommends=$o->{no_recommends}, excludedocs=$o->{excludedocs}, really_minimal_install=$minimal"); install::any::unselectMostPackages($o); 1; |