summaryrefslogtreecommitdiff
path: root/Master/install-tl
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-04-21 19:08:52 +0000
committerKarl Berry <karl@freefriends.org>2016-04-21 19:08:52 +0000
commit5aa28567dca799a746db5c20e400edcfc4031be1 (patch)
tree58ef62fb29b5c4f38158036b3d640c42ce73f2df /Master/install-tl
parent525c559215b4d53a04b0f291b9c45619bc0f0f21 (diff)
TLCrypto.pm: new module with all the functions using digests/gpg,
extracted from TLUtils.pm. TLUtils.pm: functions moved from here, change calls. TLConfig.pm: doc. TLPDB.pm, TLPOBJ.pm, install-tl, tlmgr.pl: use TLCrypto, change calls, doc. git-svn-id: svn://tug.org/texlive/trunk@40652 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-xMaster/install-tl3
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl
index 9a1244898bf..85b7a9f8df2 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -54,6 +54,7 @@ use TeXLive::TLUtils qw(platform platform_desc sort_archs
use TeXLive::TLPOBJ;
use TeXLive::TLPDB;
use TeXLive::TLConfig;
+use TeXLive::TLCrypto;
use TeXLive::TLDownload;
use TeXLive::TLPaper;
@@ -342,7 +343,7 @@ if ($opt_print_arch) {
# try to setup gpg
if ($opt_verify_downloads) {
- if (TeXLive::TLUtils::setup_gpg($::installerdir)) {
+ if (TeXLive::TLCrypto::setup_gpg($::installerdir)) {
log("Trying to verify cryptographic signatures!\n")
} else {
tlwarn("Couldn't detect gpg so will proceed without verification!\n");