diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-09-16 23:09:00 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-09-16 23:09:00 +0000 |
commit | 856e7d6ea668ba70d4bcea9876d991c634400747 (patch) | |
tree | ba789fc1049c90f28ebd94f2c96ce0d2841a6bc8 /perl-install/modules.pm | |
parent | 06d8a567c68a54842c2bbf35fcbf677655c3ece3 (diff) | |
download | drakx-856e7d6ea668ba70d4bcea9876d991c634400747.tar drakx-856e7d6ea668ba70d4bcea9876d991c634400747.tar.gz drakx-856e7d6ea668ba70d4bcea9876d991c634400747.tar.bz2 drakx-856e7d6ea668ba70d4bcea9876d991c634400747.tar.xz drakx-856e7d6ea668ba70d4bcea9876d991c634400747.zip |
make modules::*::get_above return a list, and thus fix loading of tifm_sd module during install
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 141b509e5..3c67474b6 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -256,8 +256,8 @@ sub when_load { when_load_category($conf, $name, $category); } - if (my $above = $conf->get_above($name)) { - load($above); #- eg: for snd-pcm-oss set by set_sound_slot() + if (my @above = $conf->get_above($name)) { + load(@above); #- eg: for snd-pcm-oss set by set_sound_slot() } } |