summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS2
-rw-r--r--perl-install/modules.pm2
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 {