diff options
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index 213dcdf5000..03f8f9f0fc1 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -5397,8 +5397,12 @@ sub texconfig_conf_mimic { 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/) { + for my $f (`kpsewhich -all $m`) { + info("$m: $f"); + } + } + for my $m (qw/fmtutil.cnf config.ps mktex.cnf pdftexconfig.tex/) { info("$m: " . `kpsewhich $m`); } |