summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-09-03 12:32:53 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-09-03 12:32:53 +0000
commit874f08a1316d73d6f09f0ca2df235dac495a387b (patch)
tree04b7d9263f63437f879dede82bfdd29ae6db4414 /perl-install/modules.pm
parent3635161f628098787b71456e735c9ad87578930f (diff)
downloaddrakx-backup-do-not-use-874f08a1316d73d6f09f0ca2df235dac495a387b.tar
drakx-backup-do-not-use-874f08a1316d73d6f09f0ca2df235dac495a387b.tar.gz
drakx-backup-do-not-use-874f08a1316d73d6f09f0ca2df235dac495a387b.tar.bz2
drakx-backup-do-not-use-874f08a1316d73d6f09f0ca2df235dac495a387b.tar.xz
drakx-backup-do-not-use-874f08a1316d73d6f09f0ca2df235dac495a387b.zip
no_comment
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 59947da67..7e5b1cac2 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -225,14 +225,14 @@ sub text2driver($) {
}
-sub load($;$) {
+sub load($;$@) {
my ($name, $type, @options) = @_;
$conf{$name}{loaded} and return;
$type ||= $drivers{$name}{type};
- load($_, 'prereq', $minor) foreach @{$deps{$name}};
+ load($_, 'prereq') foreach @{$deps{$name}};
load_raw($name, @options);
}