summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_gtk.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2004-07-16 11:00:45 +0000
committerOlivier Blin <oblin@mandriva.org>2004-07-16 11:00:45 +0000
commitf53ad58e60ff5102010996379da1da1abfdf8cfe (patch)
tree7b951f688a70b4f0bb2fe9c699ea77f7944a5b26 /perl-install/install_steps_gtk.pm
parent26069ec4f6b6d079a7ee289dc73310ef977f307f (diff)
downloaddrakx-backup-do-not-use-f53ad58e60ff5102010996379da1da1abfdf8cfe.tar
drakx-backup-do-not-use-f53ad58e60ff5102010996379da1da1abfdf8cfe.tar.gz
drakx-backup-do-not-use-f53ad58e60ff5102010996379da1da1abfdf8cfe.tar.bz2
drakx-backup-do-not-use-f53ad58e60ff5102010996379da1da1abfdf8cfe.tar.xz
drakx-backup-do-not-use-f53ad58e60ff5102010996379da1da1abfdf8cfe.zip
fix predicted time when there is an error installing packages
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r--perl-install/install_steps_gtk.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index a24b8d997..fad541525 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -612,6 +612,7 @@ If you don't have it, press Cancel to avoid installation from this Cd-Rom.", $na
catch_cdie { $install_result = $o->install_steps::installPackages($packages) }
sub {
log::l("catch_cdie: $@");
+ my $time = time();
if ($@ =~ /^error ordering package list: (.*)/) {
$o->ask_yesorno('', [
N("There was an error ordering packages:"), $1, N("Go on anyway?") ], 1) and return 1;
@@ -622,6 +623,8 @@ N("There was an error installing packages:"), $1, N("Go on anyway?") ], 1) and r
${$_[0]} = "already displayed";
}
$w->destroy;
+ #- add the elapsed time (otherwise the predicted time will be rubbish)
+ $start_time += time() - $time;
0;
};
if ($pkgs::cancel_install) {