diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-03-09 14:04:04 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-03-09 14:04:04 +0000 |
commit | 8d392617e1229e74513201ec95aad9df0afdc0e8 (patch) | |
tree | 2e1b0e66b8b07c74f186e4a46670e32d9e1d815b | |
parent | 8cdfeeae251273799732e2deae41ff6c860b7487 (diff) | |
download | drakx-8d392617e1229e74513201ec95aad9df0afdc0e8.tar drakx-8d392617e1229e74513201ec95aad9df0afdc0e8.tar.gz drakx-8d392617e1229e74513201ec95aad9df0afdc0e8.tar.bz2 drakx-8d392617e1229e74513201ec95aad9df0afdc0e8.tar.xz drakx-8d392617e1229e74513201ec95aad9df0afdc0e8.zip |
(get_media) add missing bit in latest commit
-rw-r--r-- | perl-install/install/media.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install/media.pm b/perl-install/install/media.pm index 2e8d617d7..590fce94c 100644 --- a/perl-install/install/media.pm +++ b/perl-install/install/media.pm @@ -503,6 +503,7 @@ sub get_media { || $phys_m->{real_mntpoint} || $phys_m->{url}; # adjust URI for cdroms if needed: if ($o->{stage2_phys_medium}{method} eq 'cdrom') { + my $arch = arch(); $uri .= "/" . ($arch =~ /i.86/ ? $MDK::Common::System::compat_arch{arch()} : arch()); system('cp', "$uri/media/media_info/compssUsers.pl", '/tmp/compssUsers.pl'); } else { |