From b013862eaf77e6f77deae745464aa377ca4062f6 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Sun, 18 Jul 2021 22:18:08 +0000 Subject: (sorry, that last log message was supposed to be:) replace File::Copy calls with TeXLive::TLUtils::copy("-f") since Fedora (it seems) doesn't provide File::Copy. Reports from Murpholino Peligro 21 May 2021 13:07:16, and John Gill 18 Jul 2021 13:55:02. git-svn-id: svn://tug.org/texlive/trunk@59983 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/scripts/texlive/fmtutil.pl | 49 ++++++++++++++-------------- 1 file changed, 24 insertions(+), 25 deletions(-) (limited to 'Master/texmf-dist/scripts/texlive') diff --git a/Master/texmf-dist/scripts/texlive/fmtutil.pl b/Master/texmf-dist/scripts/texlive/fmtutil.pl index 410c8bbea66..710d1fae740 100755 --- a/Master/texmf-dist/scripts/texlive/fmtutil.pl +++ b/Master/texmf-dist/scripts/texlive/fmtutil.pl @@ -860,34 +860,33 @@ sub rebuild_one_format { $first_time_creation_in_usermode = $possibly_warn; # # original fmtutil.sh did some magic trick for mplib-luatex.mem - # # nowadays no mplib mem is created and all files loaded # so we comment and do not convert this # - # As a special special case, we create mplib-luatex.mem for use by - # the mplib embedded in luatex if it doesn't already exist. (We - # never update it if it does exist.) - # - # This is used by the luamplib package. This way, an expert user - # who wants to try a new version of luatex (hence with a new - # version of mplib) can manually update mplib-luatex.mem without - # having to tamper with mpost itself. - # - # if test "x$format" = xmpost && test "x$engine" = xmpost; then - # mplib_mem_name=mplib-luatex.mem - # mplib_mem_file=$fulldestdir/$mplib_mem_name - # if test \! -f $mplib_mem_file; then - # verboseMsg "$progname: copying $destfile to $mplib_mem_file" - # if cp "$destfile" "$mplib_mem_file"