diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2006-11-15 14:49:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2006-11-15 14:49:26 +0000 |
commit | 698a760054ec9667081521394c8b2f7cda85a50a (patch) | |
tree | 217b0af8cbf22a68bff9f74d667112d39de014a8 /urpm.pm | |
parent | 9e8d18ea6ec624dc03e92d3d9032daab3e2c197c (diff) | |
download | urpmi-698a760054ec9667081521394c8b2f7cda85a50a.tar urpmi-698a760054ec9667081521394c8b2f7cda85a50a.tar.gz urpmi-698a760054ec9667081521394c8b2f7cda85a50a.tar.bz2 urpmi-698a760054ec9667081521394c8b2f7cda85a50a.tar.xz urpmi-698a760054ec9667081521394c8b2f7cda85a50a.zip |
removing $medium->{name}.cache was introduced in commit 33830, but i can't
find out the reason why... dropping
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -976,8 +976,7 @@ sub remove_media { $urpm->{modified} = 1; #- remove files associated with this medium. - foreach ($_->{hdlist}, $_->{list}, "synthesis.$_->{hdlist}", "descriptions.$_->{name}", "names.$_->{name}", - "$_->{name}.cache") { + foreach ($_->{hdlist}, $_->{list}, "synthesis.$_->{hdlist}", "descriptions.$_->{name}", "names.$_->{name}") { $_ and unlink "$urpm->{statedir}/$_"; } |