summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_interactive.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2009-04-24 14:17:57 +0000
committerOlivier Blin <oblin@mandriva.com>2009-04-24 14:17:57 +0000
commitff327a907e34ef06c347104f9f9c7b6084c9a376 (patch)
treea3e70872f534a105e05d45ee64fb5c0cffc5fabd /perl-install/install/steps_interactive.pm
parenteaee3f207a02a6f6ed129292ee20cc767040eb2d (diff)
downloaddrakx-backup-do-not-use-ff327a907e34ef06c347104f9f9c7b6084c9a376.tar
drakx-backup-do-not-use-ff327a907e34ef06c347104f9f9c7b6084c9a376.tar.gz
drakx-backup-do-not-use-ff327a907e34ef06c347104f9f9c7b6084c9a376.tar.bz2
drakx-backup-do-not-use-ff327a907e34ef06c347104f9f9c7b6084c9a376.tar.xz
drakx-backup-do-not-use-ff327a907e34ef06c347104f9f9c7b6084c9a376.zip
remove unused parameter in installPackages (fix passing interactive setting)
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r--perl-install/install/steps_interactive.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm
index 27748413a..2719c2b48 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -628,7 +628,7 @@ sub reallyChooseGroups {
#------------------------------------------------------------------------------
sub installPackages {
- my ($o, $packages) = @_;
+ my ($o) = @_;
my ($current, $total) = (0, 0);
my ($_w, $wait_message) = $o->wait_message_with_progress_bar(N("Installing"));
@@ -646,7 +646,7 @@ sub installPackages {
};
my $install_result;
- catch_cdie { $install_result = $o->install::steps::installPackages($packages, 'interactive') }
+ catch_cdie { $install_result = $o->install::steps::installPackages('interactive') }
sub { installPackages__handle_error($o, $_[0]) };
if ($install::pkgs::cancel_install) {