diff options
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 $_; |