diff options
Diffstat (limited to 'Master/tlpkg/bin/tl-update-tlpdb')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-tlpdb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-tlpdb b/Master/tlpkg/bin/tl-update-tlpdb index d3ccd808146..9b6b5c3c2eb 100755 --- a/Master/tlpkg/bin/tl-update-tlpdb +++ b/Master/tlpkg/bin/tl-update-tlpdb @@ -186,7 +186,8 @@ sub create_tlpdb } $tldb->root ($opt_master); # do set the option_archs from the dirs in Master/bin - $tldb->option_available_architectures ($tltree->architectures); + my @archs = $tltree->architectures; + $tldb->setting("available_architectures", @archs); return($tldb, $src_count); } |