diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index a361032e69e..90eaa15c671 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -4171,8 +4171,8 @@ sub POSTbiber { ); # handle the prebuilt binaries, which are zipped or tarred. - for my $archive (sort (<biber[-.]*>)) { - next if $archive =~ /biber-solaris|freebsd[68]\./; # we only want freebsd7 + for my $archive (sort (<biber-*>)) { + next if $archive =~ /freebsd[68]\./; # we only want freebsd7 my $unarchiver = &unarchiver ($archive); &SYSTEM ("$unarchiver $archive"); @@ -4185,7 +4185,7 @@ sub POSTbiber { # Put the executable in both the # (a) Master bin directory and # (b) Build source directory. - (my $biber_platform = $archive) =~ s/biber[-.](.*?)\..*/$1/; + (my $biber_platform = $archive) =~ s/biber-(.*?)\..*/$1/; my $tl_platform = $tl_platform{$biber_platform}; die "unknown biber platform $biber_platform, goodbye" if ! $tl_platform; @@ -4199,7 +4199,7 @@ sub POSTbiber { &SYSTEM ("$MV $biber_binary $bindir/"); # bindir should already exist } - # don't keep binary archive around in Master tree. + # don't keep binary archives around in Master tree. &SYSTEM ("$RM biber[-.]*"); } |