diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-02-04 16:29:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-02-04 16:29:26 +0000 |
commit | 41a18a501c0c935ddfbbb2c17fc1b29533983817 (patch) | |
tree | 9c517ed7df56dd4738f3de6fb864568f78454263 | |
parent | 662fafe2fbbd2e9d6d575f5525576953cbfdebee (diff) | |
download | drakx-backup-do-not-use-41a18a501c0c935ddfbbb2c17fc1b29533983817.tar drakx-backup-do-not-use-41a18a501c0c935ddfbbb2c17fc1b29533983817.tar.gz drakx-backup-do-not-use-41a18a501c0c935ddfbbb2c17fc1b29533983817.tar.bz2 drakx-backup-do-not-use-41a18a501c0c935ddfbbb2c17fc1b29533983817.tar.xz drakx-backup-do-not-use-41a18a501c0c935ddfbbb2c17fc1b29533983817.zip |
(choosePackages): don't call chooseSizeToInstall even with experts
-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 2a1fcf69c..9d46e2658 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -425,7 +425,7 @@ sub choosePackages { my $size2install = min($availableC, do { my $max = round_up(min($max_size, $availableC) / sqr(1024), 100); - if (!$::expert) { + if (1) { if ($o->{isUpgrade}) { min($def_size, $max); } else { |