diff options
author | Norbert Preining <preining@logic.at> | 2008-10-03 17:02:07 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-10-03 17:02:07 +0000 |
commit | 7caaf8301d3ae843c2a4ff1733477bd454c6aa25 (patch) | |
tree | dae90a61283029cfc2867a369966a12be44f9e4a /Master/tlpkg | |
parent | e88aa5292b4a5a0f482971a09b4796ec736a0d64 (diff) |
tl-updat-container fix for critical, could be made better maybe???
git-svn-id: svn://tug.org/texlive/trunk@10840 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-containers | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/tl-update-containers b/Master/tlpkg/bin/tl-update-containers index 8925ccbaf67..9dc569e1576 100755 --- a/Master/tlpkg/bin/tl-update-containers +++ b/Master/tlpkg/bin/tl-update-containers @@ -90,6 +90,10 @@ sub main @todopacks = @packs; $nettlpdb = TeXLive::TLPDB->new; die "Cannot create new tlpdb" unless defined($nettlpdb); + # we have to copy 00texlive.config to the new tlpdb otherwise + # the configuration gets lost ... + my $tlpconfig = $tlpdb->get_package("00texlive.config"); + $nettlpdb->add_tlpobj($tlpconfig); } else { @todopacks = $tlpdb->list_packages; $nettlpdb = $tlpdb->copy; |