summaryrefslogtreecommitdiff
path: root/Master/tlpkg/libexec/ctan2tds
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds12
1 files changed, 3 insertions, 9 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index 8343402fc02..b268e3dda53 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -4970,7 +4970,7 @@ sub POSTbiber {
&xchdir ("$DEST/source/bibtex/biber");
# move doc pdf.
- &SYSTEM ("$MV biber.pdf $DOCDIR/");
+ &mv_with_mkdir ("biber.pdf", $DOCDIR);
# biber uses different platform names.
my %tl_platform = (
@@ -4999,17 +4999,11 @@ sub POSTbiber {
my $biber_binary = "biber";
$biber_binary .= ".exe" if $archive =~ /MSWIN|cygwin/i;
- # Put the executable in both the
- # (a) Master bin directory and
- # (b) Build source directory.
+ # Put the executable in the # Master bin directory.
(my $biber_platform = $archive) =~ s/biber-(.*?)\..*/$1/;
my $tl_platform = $tl_platform{$biber_platform};
die "unknown biber platform $biber_platform, goodbye" if ! $tl_platform;
- my $builddir = "$BUILDDEST/utils/biber/bin/$tl_platform";
- &SYSTEM ("mkdir -p $builddir/");
- &SYSTEM ("$CP $biber_binary $builddir/$biber_binary");
- #
# really need to do svn cp for this (in place, can't do it here).
my $bindir = "$TOPDEST/bin/$tl_platform";
&SYSTEM ("mkdir -p $bindir/");
@@ -5092,7 +5086,7 @@ sub POSTcontext {
&SYSTEM ("$RM scripts/context/stubs/mswin/mptopdf.exe");
print "still POST$package - user-level executables\n";
- # similar to biber, executables go in both the Master bin dir and the
+ # executables go in both the Master bin dir and the
# Build linked_scripts dir. The executables are cherry-picked from
# ConTeXt's stubs directory.
my $w32_bindir = "$TOPDEST/bin/win32";