summaryrefslogtreecommitdiffstats
path: root/perl-install/pkgs.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-08-27 08:09:57 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-08-27 08:09:57 +0000
commit6c9e831de8a374dbbd7a0fdfbf137b8f3fc064ab (patch)
tree23df90df1d2b45befe8d62f5f452399d2a79f394 /perl-install/pkgs.pm
parent2e7bec9cf05c2ad1d747260087aab55f00656915 (diff)
downloaddrakx-backup-do-not-use-6c9e831de8a374dbbd7a0fdfbf137b8f3fc064ab.tar
drakx-backup-do-not-use-6c9e831de8a374dbbd7a0fdfbf137b8f3fc064ab.tar.gz
drakx-backup-do-not-use-6c9e831de8a374dbbd7a0fdfbf137b8f3fc064ab.tar.bz2
drakx-backup-do-not-use-6c9e831de8a374dbbd7a0fdfbf137b8f3fc064ab.tar.xz
drakx-backup-do-not-use-6c9e831de8a374dbbd7a0fdfbf137b8f3fc064ab.zip
add __regexp suffix to matching_desc() and matching_driver()
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index c94985fc2..ca694f54c 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -531,10 +531,10 @@ sub read_rpmsrate {
my ($inv, $p);
$flag = join('||', grep {
if (($inv, $p) = /^(!)?HW"(.*)"/) {
- ($inv xor detect_devices::matching_desc($p)) and $ok = 1;
+ ($inv xor detect_devices::matching_desc__regexp($p)) and $ok = 1;
0;
} elsif (($inv, $p) = /^(!)?DRIVER"(.*)"/) {
- ($inv xor detect_devices::matching_driver($p)) and $ok = 1;
+ ($inv xor detect_devices::matching_driver__regexp($p)) and $ok = 1;
0;
} elsif (($inv, $p) = /^(!)?TYPE"(.*)"/) {
($inv xor detect_devices::matching_type($p)) and $ok = 1;