diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-23 20:29:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-23 20:29:03 +0000 |
commit | 9cc946ad956500cce30eda31954aeafcc350d293 (patch) | |
tree | 889b1bc310853d8631c5bb25a69d5f72d6aa2ce5 /perl-install/standalone/remove-unused-packages | |
parent | 6258b76e8bf4a11884d56e60588b710d3475d5ce (diff) | |
download | drakx-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() ...
Diffstat (limited to 'perl-install/standalone/remove-unused-packages')
-rwxr-xr-x | perl-install/standalone/remove-unused-packages | 2 |
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); |