diff options
author | Norbert Preining <preining@logic.at> | 2016-06-19 06:28:20 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2016-06-19 06:28:20 +0000 |
commit | 7143421053eed4407427bc9b4426e09d5f061814 (patch) | |
tree | 6cbb1cd67f3b0f1a90129439b2a91d2ae553a7aa | |
parent | b5b7546e56c390a5916dd0bc80e0a364399022d0 (diff) |
fix overwrite of configuration
git-svn-id: svn://tug.org/texlive/trunk@41495 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl b/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl index bad8cf6f39c..a1e495265ce 100644 --- a/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl +++ b/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl @@ -251,7 +251,7 @@ sub do_install { } } my $fh; - if (!open ($fh, ">", $tools)) { + if (!open ($fh, ">>", $tools)) { tlwarn("\nptex2pdf postaction: cannot update $tools!\n"); return 1; } |