diff options
author | Karl Berry <karl@freefriends.org> | 2010-05-25 23:51:16 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-05-25 23:51:16 +0000 |
commit | 3ace2485d410c75ff6c6a53d4918b435f471021a (patch) | |
tree | 68e45a9c5f78b5f5ca8038341ed849b2ec013bfb /Master/texmf | |
parent | c7fed993f019060c4227f8ecbb92d9d2a706eeea (diff) |
Assorted unrelated but small changes.
TLConfig.pm: set autobackup default to 1.
00texlive.installation.tlpsrc: doc fixes.
check-wrapper-consistency: do not check context w32 executables.
tl-update-images: enable full image rebuild.
install-tl: MANPATH msg.
tlmgr.pl: qualify which() call.
spanish.pdf: broken and removed on CTAN.
git-svn-id: svn://tug.org/texlive/trunk@18496 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 4ffb20675bc..4f04e60a344 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -1,7 +1,7 @@ #!/usr/bin/env perl # $Id$ # -# Copyright 2008, 2009 Norbert Preining +# Copyright 2008, 2009, 2010 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. @@ -554,10 +554,10 @@ sub handle_execute_actions # addLuaMap handling # if defined simply run the magic script { - if (defined($::execute_actions{'enable'}{'luamaps'}{'run'}) || - defined($::execute_actions{'disable'}{'luamaps'}{'run'})) { + if (defined($::execute_actions{'enable'}{'luamaps'}{'run'}) + || defined($::execute_actions{'disable'}{'luamaps'}{'run'})) { # check for the existence, the PATH should be set up already - if (which("mkluatexfontdb-sys")) { + if (TeXLive::TLUtils::which("mkluatexfontdb-sys")) { $errors += do_cmd_and_check("mkluatexfontdb-sys"); } else { log("tlmgr addLuaMap handling: mkluatexfontdb-sys not found, not running it.\n"); |