diff options
author | Norbert Preining <preining@logic.at> | 2016-05-20 01:15:22 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2016-05-20 01:15:22 +0000 |
commit | 9b3a7e22dd660b8fcf597e770a60f03a9ed84268 (patch) | |
tree | 011675204d246e29b5ea771491de6639d9796b34 /Master/tlpkg/tlpostcode | |
parent | 9b21872a2d142b56c244d1bead52e44c495004fe (diff) |
load tlwingoo only on winblows
git-svn-id: svn://tug.org/texlive/trunk@41270 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlpostcode')
-rw-r--r-- | Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl b/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl index edd5ee4f48c..bad8cf6f39c 100644 --- a/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl +++ b/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl @@ -153,7 +153,9 @@ my %original = ( ); $::lang = "C"; -require TeXLive::TLWinGoo; +if (TeXLive::TLUtils::win32()) { + require TeXLive::TLWinGoo; +} require("TeXLive/trans.pl"); #use Data::Dumper; |