summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2006-11-21 15:48:28 +0000
committerPascal Rigaux <pixel@mandriva.com>2006-11-21 15:48:28 +0000
commit27a93cf55b90718343727a7643d3864884dafe60 (patch)
treedaeabdffc5a5c994d35f3b9d424fb9cb5ba46fcf /urpm.pm
parent77c4139421e6850ab5554e972b809b3ba152dec4 (diff)
downloadurpmi-27a93cf55b90718343727a7643d3864884dafe60.tar
urpmi-27a93cf55b90718343727a7643d3864884dafe60.tar.gz
urpmi-27a93cf55b90718343727a7643d3864884dafe60.tar.bz2
urpmi-27a93cf55b90718343727a7643d3864884dafe60.tar.xz
urpmi-27a93cf55b90718343727a7643d3864884dafe60.zip
when computing the md5sum of an hdlist, display the file name in the log
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm.pm b/urpm.pm
index b2900de8..11d15bce 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -3215,8 +3215,8 @@ sub local_md5sum {
sub compute_local_md5sum {
my ($urpm, $medium) = @_;
- $urpm->{log}(N("computing md5sum of existing source hdlist (or synthesis)"));
my $f = statedir_hdlist_or_synthesis($urpm, $medium);
+ $urpm->{log}(N("computing md5sum of existing source hdlist (or synthesis) [%s]", $f));
-e $f && md5sum($f);
}