diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-11-29 16:01:09 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-11-29 16:01:09 +0000 |
commit | 42a8773fe0e728410692098f2a11652ef5752849 (patch) | |
tree | 24246198e6718971afe10d27e813d117867a9d87 | |
parent | af54a906db34dbbb1c3f5f52a383405105aeb4f8 (diff) | |
download | drakx-42a8773fe0e728410692098f2a11652ef5752849.tar drakx-42a8773fe0e728410692098f2a11652ef5752849.tar.gz drakx-42a8773fe0e728410692098f2a11652ef5752849.tar.bz2 drakx-42a8773fe0e728410692098f2a11652ef5752849.tar.xz drakx-42a8773fe0e728410692098f2a11652ef5752849.zip |
A bit of grammar
-rw-r--r-- | perl-install/install2.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 4bcc0e656..5d006aa17 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -217,16 +217,16 @@ sub choosePackages { my ($_clicked, $ent_number, $auto) = @_; require pkgs; - #- always setPackages as it may have to copy hdlist files and synthesis files. + #- always setPackages as it may have to copy hdlist and synthesis files. installStepsCall($o, $auto, 'setPackages', $o->{isUpgrade} && $ent_number == 1); installStepsCall($o, $auto, 'choosePackages', $o->{packages}, $o->{compssUsers}, $ent_number == 1); my @flags = map_each { if_($::b, $::a) } %{$o->{rpmsrate_flags_chosen}}; log::l("rpmsrate_flags_chosen's: ", join(' ', sort @flags)); - #- check pre-condition where base backage has to be selected. + #- check pre-condition that basesystem package must be selected. pkgs::packageByName($o->{packages}, 'basesystem')->flag_available or die "basesystem package not selected"; - #- check if there are package that need installation. + #- check if there are packages that need installation. $o->{steps}{installPackages}{done} = 0 if $o->{steps}{installPackages}{done} && pkgs::packagesToInstall($o->{packages}) > 0; } |