diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-09-19 19:42:23 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-09-19 19:42:23 +0000 |
commit | e592a152566d32dc2c33faecf57a10ae01b02055 (patch) | |
tree | c01641d0c536124f2f7700a8e13fe18c9abe5bed /perl-install/modules.pm | |
parent | 8124d99639f34e85cbda60ab1e2e13100849fb88 (diff) | |
download | drakx-backup-do-not-use-e592a152566d32dc2c33faecf57a10ae01b02055.tar drakx-backup-do-not-use-e592a152566d32dc2c33faecf57a10ae01b02055.tar.gz drakx-backup-do-not-use-e592a152566d32dc2c33faecf57a10ae01b02055.tar.bz2 drakx-backup-do-not-use-e592a152566d32dc2c33faecf57a10ae01b02055.tar.xz drakx-backup-do-not-use-e592a152566d32dc2c33faecf57a10ae01b02055.zip |
fix passing module options when module name contains a '-' character
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 83410dfd6..f86aab09a 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -96,7 +96,8 @@ sub load_with_options { @l = remove_loaded_modules(@l) or return; - load_raw(\@l, $h_options); + my %options = map { cond_mapping_24_26($_) => $h_options->{$_} } keys %$h_options; + load_raw(\@l, \%options); } sub load { my (@l) = @_; @@ -108,7 +109,7 @@ sub load_and_configure { my ($conf, $module, $o_options) = @_; my @l = remove_loaded_modules(dependencies_closure(cond_mapping_24_26($module))); - load_raw(\@l, { $module => $o_options }); + load_raw(\@l, { cond_mapping_24_26($module) => $o_options }); if (member($module, 'imm', 'ppa') && ! -d "/proc/sys/dev/parport/parport0/devices/$module") { |