diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-03-11 10:47:42 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-03-11 10:47:42 +0000 |
commit | 4fab15178f09d688674048ebb7cd8fa8fec3b345 (patch) | |
tree | 2cd7ce76775fa9b6408795716fee888e25bf3462 | |
parent | 8b647aac4cdf7b7df006f98c5b89b820621ea3c2 (diff) | |
download | drakx-4fab15178f09d688674048ebb7cd8fa8fec3b345.tar drakx-4fab15178f09d688674048ebb7cd8fa8fec3b345.tar.gz drakx-4fab15178f09d688674048ebb7cd8fa8fec3b345.tar.bz2 drakx-4fab15178f09d688674048ebb7cd8fa8fec3b345.tar.xz drakx-4fab15178f09d688674048ebb7cd8fa8fec3b345.zip |
use full path to rpms for ISO media
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index e1d9a8e66..247f89aa8 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -961,7 +961,7 @@ sub install_urpmi { my ($iso_path) = $iso_info->{file} =~ m,^/tmp/hdimage/+(.*), or log::l("unable to find ISO image file name ($iso_info->{file}), not adding urpmi media"), next; my $dest = "/mnt/inst_iso"; - $dir = "removable:/$dest"; + $dir = "removable:/$dest/$_->{rpmsdir}"; -d "$::prefix/$dest" or mkdir_p($dest); $removable_device = "$p->{mntpoint}/$iso_path"; } elsif ($curmethod eq 'cdrom') { |