diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-06 18:04:39 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-06 18:04:39 +0000 |
commit | 07ef1cb49605b7d2df578a79f5eee812f87a7062 (patch) | |
tree | f9bd0409fa11aaa14627a413237d0696b8754be1 /perl-install/install_steps_interactive.pm | |
parent | 5a7014d19c1843b37e135e34ab3e973b706de07e (diff) | |
download | drakx-07ef1cb49605b7d2df578a79f5eee812f87a7062.tar drakx-07ef1cb49605b7d2df578a79f5eee812f87a7062.tar.gz drakx-07ef1cb49605b7d2df578a79f5eee812f87a7062.tar.bz2 drakx-07ef1cb49605b7d2df578a79f5eee812f87a7062.tar.xz drakx-07ef1cb49605b7d2df578a79f5eee812f87a7062.zip |
make perl_checker happy
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 668a3fa06..798d6fcf5 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -642,7 +642,7 @@ sub chooseGroups { #- do not try to deselect package (by default no groups are selected). $o->{isUpgrade} or $unselect_all and install_any::unselectMostPackages($o); #- if no group have been chosen, ask for using base system only, or no X, or normal. - unless ($o->{isUpgrade} || grep { $val{$_} } keys %val) { + if (!$o->{isUpgrade} && !grep { $val{$_} } keys %val) { my $docs = !$o->{excludedocs}; my $minimal = !grep { $_ } values %{$o->{compssUsersChoice}}; |