diff options
-rw-r--r-- | perl-install/install/NEWS | 4 | ||||
-rw-r--r-- | perl-install/install/steps_interactive.pm | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 2eb833030..291d3e4b8 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,7 @@ +- fix settings 'suggests' properly according to 'no_suggests' + (aka default to suggests enabled) + regression intoduced in 14.23 + Version 14.29 - 17 June 2012 - adapt to perl-URPM >= 4.2 diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index 5f22c20b7..1515f6d99 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -593,7 +593,7 @@ sub offer_minimal_options { my ($o) = @_; my $docs = !$o->{excludedocs}; state $minimal; - my $suggests = $o->{no_suggests}; + my $suggests = !$o->{no_suggests}; $o->ask_from_({ title => N("Type of install"), message => N("You have not selected any group of packages. |