diff options
author | Karl Berry <karl@freefriends.org> | 2010-09-25 16:16:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-09-25 16:16:40 +0000 |
commit | e86c79976f62fb449db1eb67282bcbb8a9c014b8 (patch) | |
tree | 567ebaa0272584ce9500b52e6a32d6b3a009bbb4 /Master/texmf/scripts | |
parent | 7be7bab1c942f058ec29d8b09838d904f1eb18ca (diff) |
list PATH value separately, not in hdr (suggestion
from rk).
git-svn-id: svn://tug.org/texlive/trunk@19896 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/scripts')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 665113c8b53..084aec528be 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -4125,17 +4125,19 @@ sub texconfig_conf_mimic { my $PATH = $ENV{'PATH'}; info("=========================== version information ==========================\n"); info(give_version()); - info("==================== binaries found by searching $PATH ===================\n"); - for my $cmd (qw/kpsewhich updmap fmtutil texconfig tex pdftex mktexpk dvips dvipdfm/) { + info("==================== executables found by searching PATH =================\n"); + info("PATH: $PATH\n"); + for my $cmd (qw/kpsewhich updmap fmtutil tlmgr tex pdftex mktexpk + dvips dvipdfmx/) { info("$cmd: " . TeXLive::TLUtils::which($cmd) . "\n"); } info("=========================== active config files ==========================\n"); - - for my $m (qw/texmf.cnf updmap.cfg fmtutil.cnf config.ps mktex.cnf pdftexconfig.tex/) { + for my $m (qw/texmf.cnf updmap.cfg fmtutil.cnf config.ps mktex.cnf + pdftexconfig.tex/) { info("$m: " . `kpsewhich $m`); } - tlwarn("missing finding of XDvi, config!\n"); + #tlwarn("missing finding of XDvi, config!\n"); info("============================= font map files =============================\n"); for my $m (qw/psfonts.map pdftex.map ps2pk.map dvipdfm.map/) { |