diff options
author | Norbert Preining <preining@logic.at> | 2008-05-28 15:54:29 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-05-28 15:54:29 +0000 |
commit | bf02054ed40b1099eba57162ad5c4ab79fcf357a (patch) | |
tree | 34af7da6838b303c3dcb821b20efaf196024647c /Master | |
parent | aa6ba5f67c58534c19ae04e9d178949ea908c259 (diff) |
TLPostActions.pm: run fc-cache on win32 in addition with -r (Staszek email)
git-svn-id: svn://tug.org/texlive/trunk@8391 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPostActions.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPostActions.pm b/Master/tlpkg/TeXLive/TLPostActions.pm index 7e97c2367e9..88daef69272 100644 --- a/Master/tlpkg/TeXLive/TLPostActions.pm +++ b/Master/tlpkg/TeXLive/TLPostActions.pm @@ -51,7 +51,7 @@ sub do_install_bin_xetex { } # call fc-cache but only when we install on win32! if (win32()) { - system("fc-cache","-v"); + system("fc-cache","-v", "-r"); } } $PostInstall{"bin-xetex"} = \&do_install_bin_xetex; |