diff options
author | Karl Berry <karl@freefriends.org> | 2017-04-16 22:56:21 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-04-16 22:56:21 +0000 |
commit | 0aa8d222d00ab420c4029213df5b8019d0bcfb6b (patch) | |
tree | e49d2fc862efd354c9674737bfaff8ebc1a327c2 /Master/tlpkg/TeXLive | |
parent | 1166c9e571cd523640fc8e6106e2582eab0ad62f (diff) |
silence -warnings with our
git-svn-id: svn://tug.org/texlive/trunk@43872 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r-- | Master/tlpkg/TeXLive/TLConfig.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index d10e8fa43e4..cc0e85c152a 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -209,14 +209,14 @@ our $F_NOPOSTACTION = 4; # The length of a checksum generated by tlchecksum and contained in # texlive.tlpdb.checksum. Needs to be in agreement with the hash # method used in TLCrypto::tlchecksum and TLCrypto::tldigest -$ChecksumLength = 128; +our $ChecksumLength = 128; # The program generating the checksum for the file given as first # argument -$ChecksumProgram = "sha512sum"; +our $ChecksumProgram = "sha512sum"; # The extension of the checksum file -$ChecksumExtension = "sha512"; +our $ChecksumExtension = "sha512"; 1; |