summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2018-06-05 02:23:02 +0000
committerNorbert Preining <preining@logic.at>2018-06-05 02:23:02 +0000
commit10cc435f1637fdddc1ef43f8218ec55e6c387fc6 (patch)
treeab62d4a7d24702947d3fe4035ecc793a706f6d5e
parent953f956467189ab37cacea9e840208470a173f76 (diff)
fmtutil: fix a call to File::Copy without a function name
git-svn-id: svn://tug.org/texlive/trunk@47929 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/fmtutil.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/fmtutil.pl b/Master/texmf-dist/scripts/texlive/fmtutil.pl
index 3006de5b64c..681d9908ff2 100755
--- a/Master/texmf-dist/scripts/texlive/fmtutil.pl
+++ b/Master/texmf-dist/scripts/texlive/fmtutil.pl
@@ -628,7 +628,7 @@ sub rebuild_one_format {
if ($poolfile && -f $poolfile) {
print_verbose("attempting to create localized format "
. "using pool=$pool and tcx=$tcx.\n");
- File::Copy($poolfile, "$eng.pool");
+ File::Copy::copy($poolfile, "$eng.pool");
$tcxflag = "-translate-file=$tcx" if ($tcx);
$localpool = 1;
}