aboutsummaryrefslogtreecommitdiffstats
path: root/Rpmdrake
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-03-02 12:58:46 +0000
committerThierry Vignaud <tv@mandriva.org>2007-03-02 12:58:46 +0000
commita371a278e5e7fab28efdfcce7e06d202960664ee (patch)
tree94c8f10120cfa6ad27bf34b3495677858f34ebd7 /Rpmdrake
parent51a559cb062fe698a816502d3237460942f87b7e (diff)
downloadrpmdrake-a371a278e5e7fab28efdfcce7e06d202960664ee.tar
rpmdrake-a371a278e5e7fab28efdfcce7e06d202960664ee.tar.gz
rpmdrake-a371a278e5e7fab28efdfcce7e06d202960664ee.tar.bz2
rpmdrake-a371a278e5e7fab28efdfcce7e06d202960664ee.tar.xz
rpmdrake-a371a278e5e7fab28efdfcce7e06d202960664ee.zip
(perform_installation) fix emptying the cache (#26222)
Diffstat (limited to 'Rpmdrake')
-rwxr-xr-xRpmdrake/pkg.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm
index a5c2ef7d..35eff4d3 100755
--- a/Rpmdrake/pkg.pm
+++ b/Rpmdrake/pkg.pm
@@ -461,7 +461,7 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-(
my %pkgs = map { $_->id => undef } grep { $_->flag_selected } @{$urpm->{depslist}};
my ($local_sources, $list, $local_to_removes) = urpm::get_pkgs::selected2list($urpm,
\%pkgs,
- clean_all => 1,
+ clean_all => 0
);
my $distant_number = scalar keys %pkgs;
if (!$local_sources && (!$list || !@$list)) {
@@ -473,9 +473,6 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-(
);
goto return_with_error;
}
- foreach (@$local_to_removes) {
- unlink $_;
- }
my @pkgs = map { scalar($_->fullname) } sort(grep { $_->flag_selected } @{$urpm->{depslist}});#{ $a->name cmp $b->name } @{$urpm->{depslist}}[keys %{$state->{selected}}];
@{$urpm->{ask_remove}} = sort urpm::select::removed_packages($urpm, $urpm->{state});