diff options
author | Norbert Preining <preining@logic.at> | 2009-08-08 08:47:41 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-08-08 08:47:41 +0000 |
commit | 0073a0b6a0820796093e5c3fe2f513cb69d29ae1 (patch) | |
tree | 9286117af34e234f12d066ea8083aa597ee679ba | |
parent | 241094d78942b6a8c31d72d2eec21c54a6d6d729 (diff) |
fix tlpsrc2tlpdb to include options
git-svn-id: svn://tug.org/texlive/trunk@14578 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tlpsrc2tlpdb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/tlpsrc2tlpdb b/Master/tlpkg/bin/tlpsrc2tlpdb index 2281ddd3e75..c0fdd97b77f 100755 --- a/Master/tlpkg/bin/tlpsrc2tlpdb +++ b/Master/tlpkg/bin/tlpsrc2tlpdb @@ -136,9 +136,13 @@ sub main # write the new db, to the real location given --all, or stdout. if ($opt_all) { $tldb->root ($opt_master); + # do set the option_archs from the dirs in Master/bin my @archs = $tltree->architectures; $tldb->setting("available_architectures", @archs); + + # add default options + $tlpdb->add_default_options(); $tldb->save; info ("$0: wrote $src_count packages to ". $tldb->root . ".\n"); } else { |