summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-23 20:29:03 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-23 20:29:03 +0000
commit9cc946ad956500cce30eda31954aeafcc350d293 (patch)
tree889b1bc310853d8631c5bb25a69d5f72d6aa2ce5
parent6258b76e8bf4a11884d56e60588b710d3475d5ce (diff)
downloaddrakx-9cc946ad956500cce30eda31954aeafcc350d293.tar
drakx-9cc946ad956500cce30eda31954aeafcc350d293.tar.gz
drakx-9cc946ad956500cce30eda31954aeafcc350d293.tar.bz2
drakx-9cc946ad956500cce30eda31954aeafcc350d293.tar.xz
drakx-9cc946ad956500cce30eda31954aeafcc350d293.zip
fix "too many parameters" bug (hopefully, nothing was actually using
$do_pkgs->{in} or ->in() ...
-rwxr-xr-xperl-install/standalone/remove-unused-packages2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/remove-unused-packages b/perl-install/standalone/remove-unused-packages
index 5d3989414..bc54c3e1c 100755
--- a/perl-install/standalone/remove-unused-packages
+++ b/perl-install/standalone/remove-unused-packages
@@ -7,5 +7,5 @@ use do_pkgs;
use standalone;
my $in = interactive->vnew('su');
-my $do_pkgs = do_pkgs->do_pkgs($in);
+my $do_pkgs = do_pkgs::do_pkgs($in);
pkgs::remove_unused_packages($in, $do_pkgs);