diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-12-19 12:16:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-12-19 12:16:49 +0000 |
commit | 3880463a92142896704deca4d341af93be762b84 (patch) | |
tree | 083ddaa4280c8f7bd74b0619ebe5d40fd4a9d038 /urpm/md5sum.pm | |
parent | fa957b2abb16441c131d8242b22579ca63d70c01 (diff) | |
download | urpmi-3880463a92142896704deca4d341af93be762b84.tar urpmi-3880463a92142896704deca4d341af93be762b84.tar.gz urpmi-3880463a92142896704deca4d341af93be762b84.tar.bz2 urpmi-3880463a92142896704deca4d341af93be762b84.tar.xz urpmi-3880463a92142896704deca4d341af93be762b84.zip |
- all tools:
o drop hdlist support (will be replaced with xml media_info)
Diffstat (limited to 'urpm/md5sum.pm')
-rw-r--r-- | urpm/md5sum.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/md5sum.pm b/urpm/md5sum.pm index 71ccc5b5..05176086 100644 --- a/urpm/md5sum.pm +++ b/urpm/md5sum.pm @@ -41,8 +41,8 @@ sub compute_on_local_medium { my ($urpm, $medium) = @_; require urpm::media; #- help perl_checker - my $f = urpm::media::statedir_hdlist_or_synthesis($urpm, $medium, 's'); - $urpm->{log}(N("computing md5sum of existing source hdlist (or synthesis) [%s]", $f)); + my $f = urpm::media::statedir_synthesis($urpm, $medium); + $urpm->{log}(N("computing md5sum of existing source synthesis [%s]", $f)); -e $f && compute($f); } |