diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-07-23 21:15:31 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-07-23 21:15:31 +0000 |
commit | 5a632fe532f355a2583970fefb2ed8ceec6c9460 (patch) | |
tree | 53c1ddbe41a4e8dad28ca4382794803ae177fbc2 /perl-install/modules.pm | |
parent | bc25ea4a6ee8505a77972e2a723607735a4e19f9 (diff) | |
download | drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.gz drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.bz2 drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.xz drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.zip |
no_comment
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 8ccf611ca..6f6f5976e 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -206,7 +206,7 @@ sub load($;$$) { $type or ($type, $minor) = @{$drivers{$name}}[3,4]; - foreach (@{$deps{$name}}) { load($_, 'prereq', $minor) } + load($_, 'prereq', $minor) foreach @{$deps{$name}}; load_raw($name, $type, $minor); } |