summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-03-22 09:14:12 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-03-22 09:14:12 +0000
commita01f2d0b2a80a6543b8170d3fb8fdec44c31ac8c (patch)
tree17e83dd80fd7a82169743b3abb05bc92f9d0fb3d /perl-install/modules.pm
parentd08facddf0d24d907b735f32324411f73ad05d1b (diff)
downloaddrakx-backup-do-not-use-a01f2d0b2a80a6543b8170d3fb8fdec44c31ac8c.tar
drakx-backup-do-not-use-a01f2d0b2a80a6543b8170d3fb8fdec44c31ac8c.tar.gz
drakx-backup-do-not-use-a01f2d0b2a80a6543b8170d3fb8fdec44c31ac8c.tar.bz2
drakx-backup-do-not-use-a01f2d0b2a80a6543b8170d3fb8fdec44c31ac8c.tar.xz
drakx-backup-do-not-use-a01f2d0b2a80a6543b8170d3fb8fdec44c31ac8c.zip
typo fix
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 785e53edf..59c89903f 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -312,7 +312,9 @@ sub write_conf() {
}
my @l;
push @l, 'scsi_hostadapter' if !is_empty_array_ref($conf{scsi_hostadapter}{probeall});
- push @l, $_ if detect_devices::matching_driver('^$_$') foreach qw(bttv cx8800 saa7134);
+ foreach (qw(bttv cx8800 saa7134)) {
+ push @l, $_ if detect_devices::matching_driver('^$_$');
+ }
my @l_26 = @l;
if (my ($agp) = probe_category('various/agpgart')) {
push @l_26, $agp->{driver};