diff options
author | Norbert Preining <preining@logic.at> | 2008-07-10 12:13:14 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-07-10 12:13:14 +0000 |
commit | 663d1c5eb6756a1019e897f29edf9d931272d836 (patch) | |
tree | 7d78c630cb7b33588e246fa5fdf06f693c685ed5 /Master/install-tl | |
parent | 89515ba795c05f1d87af289be95234d51baf2ea9 (diff) |
install-tl: do capture the output of updmap-sys and fmtutil-sys runs and do
NOT echo it to stdout, but put them into the log file only.
Better would be to analyze the output and check for errors ...
git-svn-id: svn://tug.org/texlive/trunk@9430 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Master/install-tl b/Master/install-tl index b210f4c1d3d..28ceeaabf34 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -970,7 +970,8 @@ operations might be disturbed.\n\n"; system('mktexlsr', "$TEXMFSYSVAR"); info("running updmap-sys\n"); - system('updmap-sys', '--nohash'); + # system('updmap-sys', '--nohash'); + log(`updmap-sys --nohash 2>&1`); info("re-running mktexlsr $TEXMFSYSVAR\n"); system('mktexlsr', "$TEXMFSYSVAR"); @@ -986,7 +987,9 @@ operations might be disturbed.\n\n"; # all formats option if ($vars{'option_fmt'}) { info("pre-generation all format file (fmtutil-sys --all)\n"); - system('fmtutil-sys','--all'); + #system('fmtutil-sys','--all'); + # try to capture that output + log(`fmtutil-sys --all 2>&1`); } # option_links |