diff options
author | Norbert Preining <preining@logic.at> | 2016-04-12 06:08:28 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2016-04-12 06:08:28 +0000 |
commit | 24cd1b27bf8774ebc861f9c32c594d603218ef5a (patch) | |
tree | e213f729da5cd6c80bcc8a634b46db2551bfbcc8 /Master/tlpkg/TeXLive/TLUtils.pm | |
parent | e07d46f3136a56953eaef1286a762650d2f85ada (diff) |
use tlchecksum instead of tlmd5
git-svn-id: svn://tug.org/texlive/trunk@40434 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLUtils.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index ea196963172..e5da10df1d6 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -1963,7 +1963,7 @@ not agree. Does nothing if neither of the check arguments is given. sub check_file { my ($xzfile, $checksum, $size) = @_; if ($checksum) { - if (tlmd5($xzfile) ne $checksum) { + if (tlchecksum($xzfile) ne $checksum) { tlwarn("TLUtils::check_file: found $xzfile, but hashsums differ, removing it.\n"); unlink($xzfile); return; |