diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-03-18 16:29:48 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-03-18 16:29:48 +0000 |
commit | 0c287659c9470fe74b8844a997341f851a68b715 (patch) | |
tree | 577676a5257f23e12e07e7a3542505d52356df85 /perl-install | |
parent | 23cfc13aa5c4dfb863ec9f06647eb49f7a7a054f (diff) | |
download | drakx-0c287659c9470fe74b8844a997341f851a68b715.tar drakx-0c287659c9470fe74b8844a997341f851a68b715.tar.gz drakx-0c287659c9470fe74b8844a997341f851a68b715.tar.bz2 drakx-0c287659c9470fe74b8844a997341f851a68b715.tar.xz drakx-0c287659c9470fe74b8844a997341f851a68b715.zip |
Remove noisy log
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/crypto.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/crypto.pm b/perl-install/crypto.pm index 4f2fefc61..958bed934 100644 --- a/perl-install/crypto.pm +++ b/perl-install/crypto.pm @@ -70,8 +70,7 @@ sub mirrors { my $sub_dir = $distro_type =~ /cooker|community/ ? '' : '/' . version() . '/main_updates'; foreach (<$f>) { my ($arch, $url, $dir) = m|$distro_type([^:]*):ftp://([^/]*)(/\S*)| or next; - MDK::Common::System::compat_arch($arch) or - log::l("ignoring updates from $url because of incompatible arch: $arch"), next; + MDK::Common::System::compat_arch($arch) or next; my $land = N("United States"); foreach (keys %url2land) { my $qu = quotemeta $_; |