diff options
author | Norbert Preining <preining@logic.at> | 2009-05-21 13:25:33 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-05-21 13:25:33 +0000 |
commit | 1ead6c80a68ab4a1556d02c75e89c068b9ab2dbf (patch) | |
tree | 6e03a54c62d150f08b79d8a2d92f503dddb4806b /Master/tlpkg/TeXLive/TLPDB.pm | |
parent | 0301a81d54e004eb45bdbd7adbc3c2d57f39e043 (diff) |
rename bin-tex -> tex
git-svn-id: svn://tug.org/texlive/trunk@13339 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLPDB.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPDB.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLPDB.pm b/Master/tlpkg/TeXLive/TLPDB.pm index bd0458c963e..7c1f4f74180 100644 --- a/Master/tlpkg/TeXLive/TLPDB.pm +++ b/Master/tlpkg/TeXLive/TLPDB.pm @@ -336,9 +336,9 @@ sub available_architectures { my $self = shift; my @archs = $self->option_available_architectures; if (! @archs) { - # fall back to the old method checking bin-tex\.* + # fall back to the old method checking tex\.* my @packs = $self->list_packages; - map { s/^bin-tex\.// ; push @archs, $_ ; } grep(/^bin-tex\.(.*)$/, @packs); + map { s/^tex\.// ; push @archs, $_ ; } grep(/^tex\.(.*)$/, @packs); } return @archs; } |