summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2009-05-21 13:25:33 +0000
committerNorbert Preining <preining@logic.at>2009-05-21 13:25:33 +0000
commit1ead6c80a68ab4a1556d02c75e89c068b9ab2dbf (patch)
tree6e03a54c62d150f08b79d8a2d92f503dddb4806b /Master/tlpkg/TeXLive
parent0301a81d54e004eb45bdbd7adbc3c2d57f39e043 (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')
-rw-r--r--Master/tlpkg/TeXLive/TLPDB.pm4
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;
}