diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-01 12:55:28 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-01 12:55:28 +0000 |
commit | 65137633a818e105c7ab9daf7ff65a762486d339 (patch) | |
tree | c8baca4ecc599718e879ee7c96861746315c9b42 /perl-install | |
parent | 9861da8f3f2ce411c64850c9ac4bf49d770ce1cd (diff) | |
download | drakx-65137633a818e105c7ab9daf7ff65a762486d339.tar drakx-65137633a818e105c7ab9daf7ff65a762486d339.tar.gz drakx-65137633a818e105c7ab9daf7ff65a762486d339.tar.bz2 drakx-65137633a818e105c7ab9daf7ff65a762486d339.tar.xz drakx-65137633a818e105c7ab9daf7ff65a762486d339.zip |
(getBewan) fix detection
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 287cf657a..a78b395f6 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -386,7 +386,7 @@ sub getSpeedtouch() { } sub getBewan() { - grep { $_->{description} eq 'Bewan Systems\|PCI ADSL Modem|BEWAN ADSL USB' } probeall(); + grep { $_->{description} =~ /Bewan Systems\|PCI ADSL Modem|BEWAN ADSL USB/x } probeall(); } sub getSagem() { |