summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLPostActions.pm
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-08-07 10:28:46 +0000
committerNorbert Preining <preining@logic.at>2008-08-07 10:28:46 +0000
commit2d2291c679ffdb2ab4602716ac94b097ff5241b5 (patch)
treee14e1ecd590bf2dc95b3aa9343e63dcb9e0a9b0a /Master/tlpkg/TeXLive/TLPostActions.pm
parentf503b21c3892947398f155c24eb1ace751fcb5dc (diff)
TLPostActions: run fc-cache withing log(`fc-cache ...`) so that its output
gets logged. git-svn-id: svn://tug.org/texlive/trunk@10138 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLPostActions.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLPostActions.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPostActions.pm b/Master/tlpkg/TeXLive/TLPostActions.pm
index f2469add1b5..87196c1b51c 100644
--- a/Master/tlpkg/TeXLive/TLPostActions.pm
+++ b/Master/tlpkg/TeXLive/TLPostActions.pm
@@ -122,7 +122,9 @@ sub do_install_xetex {
}
# call fc-cache but only when we install on win32!
if (win32()) {
- system("fc-cache","-v", "-r");
+ info("Running f-cache -v -r\n");
+ log(`fc-cache -v -r 2>&1`);
+ #system("fc-cache","-v", "-r");
}
}
$PostInstall{"xetex"} = \&do_install_xetex;