summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2017-10-26 23:18:10 +0000
committerNorbert Preining <preining@logic.at>2017-10-26 23:18:10 +0000
commite19c1e02379479fc40b5a776e48ab0bf416ecf3a (patch)
tree8e68cbfd907a9ca36e0787e7233e5e135d99e751
parent59ab8dbb428c00d12b1013a887a73f2ede0de521 (diff)
tlmgr: format tlmgr conf output
git-svn-id: svn://tug.org/texlive/trunk@45613 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/tlmgr.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl
index e3e9af9c597..2fef2499d6f 100755
--- a/Master/texmf-dist/scripts/texlive/tlmgr.pl
+++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl
@@ -5918,25 +5918,25 @@ sub texconfig_conf_mimic {
info(give_version());
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");
+ for my $cmd (qw/kpsewhich updmap fmtutil tlmgr tex pdftex luatex xetex
+ mktexpk dvips dvipdfmx/) {
+ info(sprintf("%-10s %s\n", "$cmd:", TeXLive::TLUtils::which($cmd)));
}
info("=========================== active config files ==========================\n");
for my $m (qw/texmf.cnf updmap.cfg/) {
for my $f (`kpsewhich -all $m`) {
- info("$m: $f");
+ info(sprintf("%-17s %s", "$m:", $f));
}
}
for my $m (qw/fmtutil.cnf config.ps mktex.cnf pdftexconfig.tex/) {
- info("$m: " . `kpsewhich $m`);
+ info(sprintf("%-17s %s", "$m:", `kpsewhich $m`));
}
#tlwarn("$prg: missing finding of XDvi, config!\n");
info("============================= font map files =============================\n");
for my $m (qw/psfonts.map pdftex.map ps2pk.map kanjix.map/) {
- info("$m: " . `kpsewhich $m`);
+ info(sprintf("%-12s %s", "$m:", `kpsewhich $m`));
}
info("=========================== kpathsea variables ===========================\n");