summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLPDB.pm
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2009-08-28 08:56:55 +0000
committerNorbert Preining <preining@logic.at>2009-08-28 08:56:55 +0000
commit8765d9be3b6b2dea3cf8f7e5686c560b6f9bb6ea (patch)
treed021c6317c379a4524f671bf4ad4c3081ebfc302 /Master/tlpkg/TeXLive/TLPDB.pm
parent242853f717ee76c2d9caa3c145ec4afe1c98dc44 (diff)
sort options when writing to TLPDB
git-svn-id: svn://tug.org/texlive/trunk@14910 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLPDB.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLPDB.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPDB.pm b/Master/tlpkg/TeXLive/TLPDB.pm
index e2d4dbf516b..3d1e2b94bb7 100644
--- a/Master/tlpkg/TeXLive/TLPDB.pm
+++ b/Master/tlpkg/TeXLive/TLPDB.pm
@@ -1156,7 +1156,7 @@ sub reset_options {
sub add_default_options {
my $self = shift;
- for my $k (keys %TeXLive::TLConfig::TLPDBOptions) {
+ for my $k (sort keys %TeXLive::TLConfig::TLPDBOptions) {
# if the option is not set already, do set it to defaults
if (! $self->option($k) ) {
$self->option($k, $TeXLive::TLConfig::TLPDBOptions{$k}->[1]);