diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-09-16 16:23:59 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-09-16 16:23:59 +0000 |
commit | 23314857a12318a791dce7f7d0abed0f99e57619 (patch) | |
tree | 290eb9ccbab03ab2fb2f996ec998cf181992e9f0 /perl-install | |
parent | 529bc9e93093d990ad48aa3e667038f646f9fc0c (diff) | |
download | drakx-23314857a12318a791dce7f7d0abed0f99e57619.tar drakx-23314857a12318a791dce7f7d0abed0f99e57619.tar.gz drakx-23314857a12318a791dce7f7d0abed0f99e57619.tar.bz2 drakx-23314857a12318a791dce7f7d0abed0f99e57619.tar.xz drakx-23314857a12318a791dce7f7d0abed0f99e57619.zip |
further simplify
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/harddrake2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index 1d7d450a2..588ac6841 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -387,7 +387,7 @@ my @classes; foreach my $hw_class (@harddrake::data::tree) { my ($Ident, $title, $icon, $configurator, $detector) = @$hw_class{qw(class string icon configurator detector)}; next if ref($detector) ne "CODE"; #skip class witouth detector - next if $Ident =~ /(MODEM|PRINTER)/ && $::testing; + next if $Ident =~ /MODEM/ && $::testing; next if $Ident =~ /JAZZ/ && !$options{JAZZ_DETECTION}; $detect_devices::detect_serial_modem = 0 if $Ident =~ /MODEM/ && !$options{MODEMS_DETECTION}; |