summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-03-17 20:30:35 +0000
committerKarl Berry <karl@freefriends.org>2022-03-17 20:30:35 +0000
commitc389b7299225b11856320fa1561f9b1ca35bbc6b (patch)
tree924a04ffd988fc845b43e88880a21664b97340d5 /Master/texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc
parent3917441f015eb84d969489a2dfb8e0c85142d0c0 (diff)
latexmk (17mar22) (branch)
git-svn-id: svn://tug.org/texlive/branches/branch2021.final@62768 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc')
-rw-r--r--Master/texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc3
1 files changed, 1 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc b/Master/texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc
index 45f32979d0f..7a7425ff47e 100644
--- a/Master/texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc
+++ b/Master/texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc
@@ -48,8 +48,7 @@ sub asy2tex { return asy2x( $_[0], 'tex' ); }
sub asy2x {
my $ret = system("asy -vv -f '$_[1]' '$_[0]' >& '$_[0].log'");
- my $FH = new FileHandle;
- open $FH, "$_[0].log";
+ open( my $FH, "<", "$_[0].log" );
%imp = ();
while (<$FH>) {