summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2017-09-07 20:24:35 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2017-09-07 21:08:09 +0200
commit4920fbf71ee20c8cfd44fa6a73c06f2159932cff (patch)
treee6a7c812e24701d4eb70567269d1b1bcff9f3427 /perl-install/install/steps_interactive.pm
parent102339802fe667e53d517f522d24bb9e4c652019 (diff)
downloaddrakx-4920fbf71ee20c8cfd44fa6a73c06f2159932cff.tar
drakx-4920fbf71ee20c8cfd44fa6a73c06f2159932cff.tar.gz
drakx-4920fbf71ee20c8cfd44fa6a73c06f2159932cff.tar.bz2
drakx-4920fbf71ee20c8cfd44fa6a73c06f2159932cff.tar.xz
drakx-4920fbf71ee20c8cfd44fa6a73c06f2159932cff.zip
adapt to URPM-5.14 (using perl native ints)
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r--perl-install/install/steps_interactive.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm
index 8cddb5bcf..bc9fae579 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -3,7 +3,6 @@ package install::steps_interactive;
use strict;
use feature 'state';
-use Math::Int64 ':native_if_available', 'int64';
our @ISA = qw(install::steps);
@@ -642,7 +641,7 @@ sub beforeInstallPackages {
#------------------------------------------------------------------------------
sub installPackages {
my ($o) = @_;
- my ($current, $total) = (int64(0), 0);
+ my ($current, $total) = (0, 0);
my ($_w, $wait_message) = $o->wait_message_with_progress_bar(N("Installing"));
$wait_message->(N("Preparing installation"), 0, 100); #- beware, interactive::curses::wait_message_with_progress_bar need to create the Dialog::Progress here because in installCallback we are chrooted