diff options
author | Karl Berry <karl@freefriends.org> | 2014-07-04 22:59:44 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-07-04 22:59:44 +0000 |
commit | d77a88a66de5c4a9bc5ffbd10d62833de39bc31e (patch) | |
tree | 892fa15fd3490f7b2defc0b3ef3f21e891acd52e /Master/tlpkg/bin | |
parent | c64cd5d30ffc29a53e3967461bdaf4d58aee6ddf (diff) |
tlpsrc: sort available_architectures; doc; avoid long explicit exclusion lists
git-svn-id: svn://tug.org/texlive/trunk@34521 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-tlpdb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-tlpdb b/Master/tlpkg/bin/tl-update-tlpdb index f24f24618af..98dc06e519f 100755 --- a/Master/tlpkg/bin/tl-update-tlpdb +++ b/Master/tlpkg/bin/tl-update-tlpdb @@ -405,7 +405,7 @@ sub create_tlpdb { if (!$opt_tlpsrc_from_cmdline || $found_texlive_installation) { # do set the option_archs from the dirs in Master/bin my @archs = $tltree->architectures; - $tldb->setting("available_architectures", @archs); + $tldb->setting("available_architectures", sort @archs); # reset options to what we have by default $tldb->add_default_options(); |