summaryrefslogtreecommitdiff
path: root/Master/tlpkg/libexec
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-12-29 23:04:53 +0000
committerKarl Berry <karl@freefriends.org>2022-12-29 23:04:53 +0000
commitfb9529f5945c966f5cecc99c572b3079a265a805 (patch)
tree1ebdb1a7232d7a80096bce8ce2512ff071067bbf /Master/tlpkg/libexec
parent4138c1f82cf970c8e9dff0b4e65cac5e91c34894 (diff)
pst-flags runtime files
git-svn-id: svn://tug.org/texlive/trunk@65399 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index 4f6eb9649d3..1b4c7e36618 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -4040,7 +4040,7 @@ sub rename_with_mkdir {
}
(my $parent = $to) =~ s,/[^/]*$,,;
&xmkdir ($parent);
- &SYSTEM ("$MV $from $to");
+ &xsystem ("$MV $from $to");
}
# run a shell command.
@@ -7518,12 +7518,12 @@ sub POSTzhmetrics {
# doc/source/tex files. Handle those directories in themselves.
#
sub POST_onelevel {
- print "POST$package - handle doc/source/tex directories\n";
+ print "POST_onelevel ($package) - handle doc/source/tex directories\n";
for my $dir ("source", "tex") {
next unless -d $dir;
# theoretically we should use $whichformat, $sourceformat,
# but in practice they are always the same.
- &rename_with_mkdir ($d, "$DEST/$dir/$whichdocformat/$package");
+ &rename_with_mkdir ($dir, "$DEST/$dir/$whichdocformat/$package");
}
# move files in doc/ up to cwd. If there are clashes, will error out.
&xsystem ("$MV doc/* .");