summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-04-03 12:19:02 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-04-03 12:19:02 +0000
commitf0dd89ace0dc594664e866aed846b253493720b6 (patch)
tree17cfa9348f87e0339227fa942eb970e3a8b2f86b /perl-install/install_steps_interactive.pm
parent0241717ad27f28a6489807533f138d5aaa4aa5f8 (diff)
downloaddrakx-backup-do-not-use-f0dd89ace0dc594664e866aed846b253493720b6.tar
drakx-backup-do-not-use-f0dd89ace0dc594664e866aed846b253493720b6.tar.gz
drakx-backup-do-not-use-f0dd89ace0dc594664e866aed846b253493720b6.tar.bz2
drakx-backup-do-not-use-f0dd89ace0dc594664e866aed846b253493720b6.tar.xz
drakx-backup-do-not-use-f0dd89ace0dc594664e866aed846b253493720b6.zip
(choosePackages): do not make a special case for upgrades (was: select the
min size, which was on contradiction with profile selection)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm4
1 files changed, 0 insertions, 4 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index b82463dd4..5ae27f918 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -466,9 +466,6 @@ sub choosePackages {
my $max = round_up(min($max_size, $availableC) / sqr(1024), 100);
if (1) {
- if ($o->{isUpgrade}) {
- min($def_size, $max);
- } else {
my (@l);
my @text = (__("Minimum (%dMB)"), __("Recommended (%dMB)"), __("Complete (%dMB)"));
if ($o->{meta_class} eq 'desktop') {
@@ -486,7 +483,6 @@ sub choosePackages {
# $o->ask_from_listf('', _("Select the size you want to install"),
# sub { _ ($text[$_[0]], $_[0]) }, \@l, $l[1]) * sqr(1024);
$max * sqr(1024);
- }
} else {
$o->chooseSizeToInstall($packages, $min_size, $def_size, $max_size, $availableC, $individual) || goto &choosePackages;
}