diff options
author | Karl Berry <karl@freefriends.org> | 2017-11-22 23:08:09 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-11-22 23:08:09 +0000 |
commit | 6fb2d71f51c205ee9451257e8fe5ee4f24e0fa42 (patch) | |
tree | b6db2c16cedcd1937270e33f496aba280fddeb0a /Master/tlpkg/libexec | |
parent | 6ded4238ca0913166ea4b5a5efdde5f44900d3e8 (diff) |
i386-darwin/biber -> x86_64-darwinlegacy (mojca, 22 Nov 2017 16:34:29)
git-svn-id: svn://tug.org/texlive/trunk@45887 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 36b7d5d5102..f1ca33138a9 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -5503,7 +5503,7 @@ sub POSTbiber { my $biber_binary = "biber"; $biber_binary .= ".exe" if $archive =~ /MSWIN|cygwin/i; - # Put the executable in the # Master bin 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; @@ -5514,6 +5514,12 @@ sub POSTbiber { &SYSTEM ("$MV $biber_binary $bindir/") == 0 || die; } + # Mac "legacy" doesn't need its own build. + my $topbin = "$TOPDEST/bin"; + my $legacybin = "$topbin/x86_64-darwinlegacy"; + &xmkdir ($legacybin); + &SYSTEM ("$CP $topbin/i386-darwin/biber $legacybin/biber"); + # don't keep binary archives around in Master tree. &SYSTEM ("$RM biber[-.]*"); |