From 2357094a849f8aced3627c30fdea64d34cb3f057 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Tue, 17 Aug 2004 02:54:40 +0000 Subject: perl_checker fix --- perl-install/install_any.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index b6b522bc6..3b3538fc0 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -450,8 +450,8 @@ sub selectSupplMedia { log::l("read suppl hdlist (via $suppl_method)"); $supplmedium->{prefix} = $url; #- for install_urpmi if ($suppl_method eq 'ftp') { - $url =~ m!^ftp://(?:(.*?)(?::(.*?))?@)?([^/]+)/(.*)!; - $supplmedium->{ftp_prefix} = [ $3, $4, $1, $2 ]; #- for getFile + $url =~ m!^ftp://(?:(.*?)(?::(.*?))?@)?([^/]+)/(.*)! + and $supplmedium->{ftp_prefix} = [ $3, $4, $1, $2 ]; #- for getFile } $supplmedium->{selected} = 1; $supplmedium->{method} = $suppl_method; -- cgit v1.2.1