diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-08-21 12:29:58 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-08-21 12:29:58 +0000 |
commit | 92443341b5fbdae7d14e7313c8f733fd91bd96e3 (patch) | |
tree | 3faa5ba38e29ce76f7f72242891911649f373dc8 /perl-install/modules.pm | |
parent | 7564ce40a3c7ac64704a2e41f0e03b76d774585d (diff) | |
download | drakx-92443341b5fbdae7d14e7313c8f733fd91bd96e3.tar drakx-92443341b5fbdae7d14e7313c8f733fd91bd96e3.tar.gz drakx-92443341b5fbdae7d14e7313c8f733fd91bd96e3.tar.bz2 drakx-92443341b5fbdae7d14e7313c8f733fd91bd96e3.tar.xz drakx-92443341b5fbdae7d14e7313c8f733fd91bd96e3.zip |
convert module names to module filenames
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 28d70fc46..96fb86203 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -241,7 +241,7 @@ sub read_already_loaded { sub name2file { my ($name) = @_; - "$name.ko"; + list_modules::modname2filename($name) . ".ko"; } sub when_load { |