summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-01-30 22:35:37 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-01-30 22:35:37 +0000
commit144146a4fdfea33d8d6b6d704235260cdb1cadc6 (patch)
tree3d1f363713ffc4e290fc247aaf4fcf2be4dd6735 /perl-install/modules.pm
parent80b5e4e009276349e59ed2b9eefb5e42da3d073f (diff)
downloaddrakx-144146a4fdfea33d8d6b6d704235260cdb1cadc6.tar
drakx-144146a4fdfea33d8d6b6d704235260cdb1cadc6.tar.gz
drakx-144146a4fdfea33d8d6b6d704235260cdb1cadc6.tar.bz2
drakx-144146a4fdfea33d8d6b6d704235260cdb1cadc6.tar.xz
drakx-144146a4fdfea33d8d6b6d704235260cdb1cadc6.zip
adapt to new category network/gigabit (which used to be in network/main)
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 8a28ef23b..ad8519635 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -36,7 +36,7 @@ sub load {
@l = difference2([ uniq(@l) ], [ loaded_modules() ]) or return;
my $network_module = do {
- my ($network_modules, $other) = partition { module2category($_) =~ m,network/(main|usb), } @l;
+ my ($network_modules, $other) = partition { module2category($_) =~ m,network/(main|gigabit|usb), } @l;
if (@$network_modules > 1) {
# do it one by one
load($_) foreach @$network_modules;