diff options
author | Karl Berry <karl@freefriends.org> | 2014-05-06 15:12:46 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-05-06 15:12:46 +0000 |
commit | a49534a127d5e9d62c7006dac819093fa231f2e0 (patch) | |
tree | 593b7ed2090430499ac11aacabedb3e6c5c51fed /Master/tlpkg/libexec | |
parent | 1f3bd3a6433dff8ca274417d85117ea4e25dc75d (diff) |
biber no longer in source tree
git-svn-id: svn://tug.org/texlive/trunk@33883 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 12 |
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"; |