diff options
author | Damien Chaumette <dchaumette@mandriva.com> | 2002-09-06 21:23:22 +0000 |
---|---|---|
committer | Damien Chaumette <dchaumette@mandriva.com> | 2002-09-06 21:23:22 +0000 |
commit | a2491c8a1e821c463a1cec91cd4506cab2159114 (patch) | |
tree | 913303fa2c4be57e46621819ad5a5cece0d11e36 /perl-install | |
parent | 0249d2761e9754bf79f1171f4fe02b51e90657cb (diff) | |
download | drakx-a2491c8a1e821c463a1cec91cd4506cab2159114.tar drakx-a2491c8a1e821c463a1cec91cd4506cab2159114.tar.gz drakx-a2491c8a1e821c463a1cec91cd4506cab2159114.tar.bz2 drakx-a2491c8a1e821c463a1cec91cd4506cab2159114.tar.xz drakx-a2491c8a1e821c463a1cec91cd4506cab2159114.zip |
- Fix isdn card detection
Diffstat (limited to 'perl-install')
-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 a33873639..368a8c380 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -106,7 +106,7 @@ sub probe_category { my @modules = category2modules($category); grep { - if ($category eq 'isdn') { + if ($category =~ /isdn/) { my $b = $_->{driver} =~ /ISDN:([^,]*),?([^,]*),?(.*)/; if ($b) { $_->{driver} = $1; |