diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | urpm/install.pm | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -2,6 +2,9 @@ upgrade list - gurpmi: o handle priority upgrade list +- urpmi: + o do not pretent removing packages from cache when there's nothing + to remove Version 5.7 - 3 March 2008, by Pascal "Pixel" Rigaux diff --git a/urpm/install.pm b/urpm/install.pm index 545cdbb0..a48fbf7c 100644 --- a/urpm/install.pm +++ b/urpm/install.pm @@ -249,7 +249,7 @@ sub install { #- examine the local cache to delete packages which were part of this transaction my $cachedir = "$urpm->{cachedir}/rpms"; my @pkgs = grep { -e "$cachedir/$_" } map { $_->filename } @trans_pkgs; - $urpm->{log}(N("removing installed rpms (%s) from %s", join(' ', @pkgs), $cachedir)); + $urpm->{log}(N("removing installed rpms (%s) from %s", join(' ', @pkgs), $cachedir)) if @pkgs; foreach (@pkgs) { unlink "$cachedir/$_" or $urpm->{fatal}(1, N("removing %s failed: %s", $_, $!)); } |