diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-08-17 08:07:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-08-17 08:07:43 +0000 |
commit | 336a0bf9555e157a8840c88e1a08614fb52499fc (patch) | |
tree | ee1e1f401a120bef451596d57d26521aae48dc0f /perl-install/crypto.pm | |
parent | 62e4100e3f24b84b904f3fa77510fd9baa728ee7 (diff) | |
download | drakx-336a0bf9555e157a8840c88e1a08614fb52499fc.tar drakx-336a0bf9555e157a8840c88e1a08614fb52499fc.tar.gz drakx-336a0bf9555e157a8840c88e1a08614fb52499fc.tar.bz2 drakx-336a0bf9555e157a8840c88e1a08614fb52499fc.tar.xz drakx-336a0bf9555e157a8840c88e1a08614fb52499fc.zip |
$::corporate is dead
Diffstat (limited to 'perl-install/crypto.pm')
-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 5121330c0..908811a32 100644 --- a/perl-install/crypto.pm +++ b/perl-install/crypto.pm @@ -57,7 +57,7 @@ sub mirrors { local $SIG{ALRM} = sub { die "timeout" }; alarm 60; my $distro_type = $o_distro_type || 'updates'; - my $sub_dir = $distro_type =~ /cooker|community/ ? '' : ($::corporate ? '/corporate' : '') . '/' . version(); + my $sub_dir = $distro_type =~ /cooker|community/ ? '' : '/' . version(); foreach (<$f>) { my ($arch, $url, $dir) = m|$distro_type([^:]*):ftp://([^/]*)(/\S*)| or next; MDK::Common::System::compat_arch($arch) or |