summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/texlive
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2021-08-04 01:42:52 +0000
committerNorbert Preining <preining@logic.at>2021-08-04 01:42:52 +0000
commit9cefbbac0dadf5e37e7144d03e83945f9c412f99 (patch)
tree18846c17a6aefb31f91d974b479882b242bcbe60 /Master/texmf-dist/scripts/texlive
parent035983ca6f634bf7cb4ec3f157ec714749d4f6f3 (diff)
tlmgr: make sure that backticks is protected
git-svn-id: svn://tug.org/texlive/trunk@60157 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/texlive')
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/tlmgr.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl
index 99b7bc79655..e198db6a764 100755
--- a/Master/texmf-dist/scripts/texlive/tlmgr.pl
+++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl
@@ -6465,7 +6465,7 @@ sub texconfig_conf_mimic {
}
info("=========================== active config files ==========================\n");
for my $m (sort(qw/fmtutil.cnf config.ps mktex.cnf pdftexconfig.tex/)) {
- info(sprintf("%-17s %s", "$m:", `kpsewhich $m`));
+ info(sprintf("%-17s %s", "$m:", `kpsewhich $m` || "(not found!)\n"));
}
for my $m (qw/texmf.cnf updmap.cfg/) {
for my $f (`kpsewhich -all $m`) {