diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-02-03 16:10:53 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-02-03 16:10:53 +0000 |
commit | 38a02aed867415b1e5bd3586e28bb18c1f5a2b9c (patch) | |
tree | edd76477049993519b2362101c2c8beeb2e85d06 /perl-install/modules.pm | |
parent | bae285dff201074f775e6539462cf577a76c7392 (diff) | |
download | drakx-38a02aed867415b1e5bd3586e28bb18c1f5a2b9c.tar drakx-38a02aed867415b1e5bd3586e28bb18c1f5a2b9c.tar.gz drakx-38a02aed867415b1e5bd3586e28bb18c1f5a2b9c.tar.bz2 drakx-38a02aed867415b1e5bd3586e28bb18c1f5a2b9c.tar.xz drakx-38a02aed867415b1e5bd3586e28bb18c1f5a2b9c.zip |
fix typo
Diffstat (limited to 'perl-install/modules.pm')
-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 79f3aa3ed..2bda575c7 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -37,7 +37,7 @@ sub load { my ($name, @options) = ref($_) ? @$_ : $_; $options{$name} = \@options; my @l = dependencies_closure($name); - if (c::kernel_version() =~ /^\@2.6/) { + if (c::kernel_version() =~ /^\Q2.6/) { push @l, "$1-hcd" if $name =~ /(uhci|ohci)/; # usb-uhci, uhci, usb-ohci are deprecated in 2.6 } @l; |