diff options
author | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-06-22 19:29:28 +0000 |
---|---|---|
committer | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-06-22 19:29:28 +0000 |
commit | a8c692880f6a5f6358c6a240b25e86570a59a896 (patch) | |
tree | dd88aa24e38fb045eda4a8c92ca2c70069d5ff7c /Master/install-tl | |
parent | ba0fd57a458f5250582b9dc7499f7ea78e0da31c (diff) |
install-tl: sort texlive.profile.
git-svn-id: svn://tug.org/texlive/trunk@8943 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index de7d9647bda..739eada23d2 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -764,7 +764,7 @@ sub create_profile { print $fh "# it will NOT be overwritten and reflects only the\n"; print $fh "# installation profile at installation time\n"; print $fh "selected_scheme $vars{selected_scheme}\n"; - foreach my $key (keys %vars) { + foreach my $key (sort (keys %vars)) { print $fh "$key $vars{$key}\n" if $key=~/^collection/ and $vars{$key}==1; print $fh "$key $vars{$key}\n" if $key=~/^option_letter/; |