From 76769bba270fb96b42fa88a00e94392db623ef7f Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 19 Sep 2007 17:22:55 +0000 Subject: in my tests with drakx-in-chroot, i end up change_phys_medium being called by get_file_and_size, so ensure $o->{packages} is passed, otherwise it breaks needToCopy action --- perl-install/install/media.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/install/media.pm') diff --git a/perl-install/install/media.pm b/perl-install/install/media.pm index 576f59ba2..9dbfaabf9 100644 --- a/perl-install/install/media.pm +++ b/perl-install/install/media.pm @@ -377,7 +377,7 @@ sub get_file_and_size { my $f2 = path($phys_m, $f); if (! -f $f2) { - change_phys_medium($phys_m, $f); + change_phys_medium($phys_m, $f, $::o->{packages}); } open_file_and_size($f2); } @@ -580,7 +580,7 @@ sub url2mounted_phys_medium { my $phys_m = url2phys_medium($o, $url); $phys_m->{name} = $o_name if $o_name; #- useful for CDs which prompts a name in change_phys_medium - change_phys_medium($phys_m, $o_rel_file) or return; + change_phys_medium($phys_m, $o_rel_file, $o->{packages}) or return; $phys_m; } -- cgit v1.2.1