diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-06-23 09:03:12 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-06-23 09:03:12 +0000 |
commit | f163131fffa8e8a32083f18a629331082d047401 (patch) | |
tree | 8150e336f169d54fc9da7383ba7637157f4c43ca /perl-install | |
parent | 6489084b3eecfcc5d5721be2428486f622d28a13 (diff) | |
download | drakx-backup-do-not-use-f163131fffa8e8a32083f18a629331082d047401.tar drakx-backup-do-not-use-f163131fffa8e8a32083f18a629331082d047401.tar.gz drakx-backup-do-not-use-f163131fffa8e8a32083f18a629331082d047401.tar.bz2 drakx-backup-do-not-use-f163131fffa8e8a32083f18a629331082d047401.tar.xz drakx-backup-do-not-use-f163131fffa8e8a32083f18a629331082d047401.zip |
fix another typo from Titi in #9112 fix (#6802)
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 638bebd5b..cb4d2ae2e 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -318,7 +318,7 @@ sub write_conf() { } my @l; push @l, 'scsi_hostadapter' if !is_empty_array_ref($conf{scsi_hostadapter}{probeall}); - push @l, grep { detect_devices::matching_driver('^$_$') } qw(bttv cx8800 saa7134); + push @l, grep { detect_devices::matching_driver("^$_\$") } qw(bttv cx8800 saa7134); my @l_26 = @l; if (my ($agp) = probe_category('various/agpgart')) { push @l_26, $agp->{driver}; |