diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-09-13 09:31:19 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-09-13 09:31:19 +0000 |
commit | 35a3a2937aacd0fb4254ffc6b15d0565a41039c7 (patch) | |
tree | 3a18276dc7233a947095172721ef39c14d798240 /perl-install | |
parent | c9ecfca03e9e2042a86211ae8410cb226d34f204 (diff) | |
download | drakx-35a3a2937aacd0fb4254ffc6b15d0565a41039c7.tar drakx-35a3a2937aacd0fb4254ffc6b15d0565a41039c7.tar.gz drakx-35a3a2937aacd0fb4254ffc6b15d0565a41039c7.tar.bz2 drakx-35a3a2937aacd0fb4254ffc6b15d0565a41039c7.tar.xz drakx-35a3a2937aacd0fb4254ffc6b15d0565a41039c7.zip |
Need more coffee
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/crypto.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/crypto.pm b/perl-install/crypto.pm index 19fe7d397..426e9bf6e 100644 --- a/perl-install/crypto.pm +++ b/perl-install/crypto.pm @@ -106,7 +106,7 @@ sub mirrors { my %arch_mirror; foreach (<$f>) { my ($arch, $url, $dir) = m|$distro_type([^:]*):ftp://([^/]*)(/\S*)| or next; - defined $strict_arch && $arch eq $strict_arch or next; + $strict_arch && $arch eq $strict_arch and next; MDK::Common::System::compat_arch($arch) or next; $arch eq $our_arch and $strict_arch = $arch; my $land = N("United States"); |