diff options
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; } |