From 6c9e831de8a374dbbd7a0fdfbf137b8f3fc064ab Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 27 Aug 2004 08:09:57 +0000 Subject: add __regexp suffix to matching_desc() and matching_driver() --- perl-install/pkgs.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/pkgs.pm') 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; -- cgit v1.2.1