diff options
author | Norbert Preining <preining@logic.at> | 2012-03-01 02:32:20 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2012-03-01 02:32:20 +0000 |
commit | 9da18838c3fcfff25f9e52f8db8b93aff89aeecf (patch) | |
tree | d9f29681710d59d78eae9918d3aabe1714d21c72 /Master/texmf | |
parent | 03d59591adbf26367ab5a593d803994dcdfc3fbb (diff) |
make mupdmap quiet
git-svn-id: svn://tug.org/texlive/trunk@25545 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rwxr-xr-x | Master/texmf/scripts/texlive/mupdmap.pl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/mupdmap.pl b/Master/texmf/scripts/texlive/mupdmap.pl index 456f08955cb..1137347a423 100755 --- a/Master/texmf/scripts/texlive/mupdmap.pl +++ b/Master/texmf/scripts/texlive/mupdmap.pl @@ -293,9 +293,11 @@ sub main { $changes_config_file = "$dn/updmap.cfg"; } } - print "$prg is using the following updmap.cfg files (in precedence order):\n"; - for my $f (@{$opts{'cnffile'}}) { - print " $f\n"; + if (!$opts{'quiet'}) { + print "$prg is using the following updmap.cfg files (in precedence order):\n"; + for my $f (@{$opts{'cnffile'}}) { + print " $f\n"; + } } $alldata->{'changes_config'} = $changes_config_file; |