diff options
author | Karl Berry <karl@freefriends.org> | 2015-04-12 15:53:26 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-04-12 15:53:26 +0000 |
commit | c91e5ce2ac153a90a8d58bd0383f9a1c2d69c42c (patch) | |
tree | b5d796f710648eb113313fd4eb665f88c40ed8ca /Master/texmf-dist/scripts | |
parent | 70026c3c818170e14d1cea1156cf40f328ee9f6d (diff) |
no verbose stdout if $mktexfmtMode
git-svn-id: svn://tug.org/texlive/trunk@36788 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/fmtutil.pl | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/texlive/fmtutil.pl b/Master/texmf-dist/scripts/texlive/fmtutil.pl index a5582e42b5f..8dce55d3dde 100755 --- a/Master/texmf-dist/scripts/texlive/fmtutil.pl +++ b/Master/texmf-dist/scripts/texlive/fmtutil.pl @@ -914,12 +914,14 @@ sub determine_config_files { } } if (!$opts{'quiet'}) { - print "$prg is using the following $fn files (in precedence order):\n"; + print_verbose("$prg is using the following $fn files" + . " (in precedence order):\n"); for my $f (@{$opts{'cnffile'}}) { - print " $f\n"; + print_verbose(" $f\n"); } - print "$prg is using the following $fn file for writing changes:\n"; - print " $changes_config_file\n"; + print_verbose("$prg is using the following $fn file" + . " for writing changes:\n"); + print_verbose(" $changes_config_file\n"); } if ($opts{'listfiles'}) { # we listed it above, so be done @@ -972,10 +974,10 @@ sub reset_root_home { # # printing to stdout (in mktexfmtMode also going to stderr!) # print_info can be supressed with --quiet -# print_verbose cannot be supressed +# print_verbose cannot be suppressed # printing to stderr # print_warning can be supressed with --quiet -# print_error cannot be supressed +# print_error cannot be suppressed # sub print_info { if ($mktexfmtMode) { |