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 | |
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
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/modules.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 43c38894d..45aa726dd 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- convert module names to module filenames + Version 10.4.172 - 21 August 2007, by Olivier "blino" Blin - ignore wmaster* devices when detecting wireless interfaces 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 { |