diff options
author | Karl Berry <karl@freefriends.org> | 2017-05-08 17:26:47 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-05-08 17:26:47 +0000 |
commit | c43a6e19938380bb01435c9687aaeac2621b962c (patch) | |
tree | d79568fad21501809a8482713ef268fa0a950c92 /Master/texmf-dist/scripts | |
parent | fb7356be8fc2d630c3c088408799c2dc0d325502 (diff) |
tl-makeself-from-tlnet: rework to support spaces in source and target
directory paths. More checking, reporting, debugging.
tl-test-makeself,
tl-test-install: new test scripts.
tl-update-tlcritical: doc.
tlmgr.pl: ddebug a couple init msgs instead of debug; doc.
dev/profiles: new directory of profiles for assorted (manual) testing.
git-svn-id: svn://tug.org/texlive/trunk@44249 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index e40d1a30177..181a63e5d02 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -595,7 +595,7 @@ for the full story.\n"; # # Try to open the packagelog file, but do NOT die when that does not work if (!open(PACKAGELOG, ">>$packagelogfile")) { - debug("Cannot open package log file $packagelogfile for appending\n"); + debug("Cannot open package log file for appending: $packagelogfile\n"); debug("Will not log package installation/removal/update for this run\n"); $packagelogfile = ""; } @@ -618,14 +618,14 @@ for the full story.\n"; $::no_execute_actions = 1 if (defined($opts{'no-execute-actions'})); # if we are asked to use persistent connections try to start it here - debug("tlmgr:main: do persistent downloads = $opts{'persistent-downloads'}\n"); + ddebug("tlmgr:main: do persistent downloads = $opts{'persistent-downloads'}\n"); if ($opts{'persistent-downloads'}) { TeXLive::TLUtils::setup_persistent_downloads() ; } if (!defined($::tldownload_server)) { debug("tlmgr:main: ::tldownload_server not defined\n"); } else { - debug("tlmgr:main: ::tldownload_server defined\n"); + debug("tlmgr:main: ::tldownload_server defined: $::tldownload_server\n"); } my $ret = execute_action($action, @ARGV); @@ -7170,8 +7170,9 @@ The subcommand C<auxtrees> allows adding and removing arbitrary additional texmf trees, completely under user control. C<auxtrees show> shows the list of additional trees, C<auxtrees add> I<tree> adds a tree to the list, and C<auxtrees remove> I<tree> removes a tree from the list -(if present). The trees should not contain an C<ls-R> file. This works -by manipulating the Kpathsea variable C<TEXMFAUXTREES>, in +(if present). The trees should not contain an C<ls-R> file (or files +might not be found if the C<ls-R> becomes stale). This works by +manipulating the Kpathsea variable C<TEXMFAUXTREES>, in C<ROOT/texmf.cnf>. Example: tlmgr conf auxtrees add /quick/test/tree |