summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2009-04-28 20:54:39 +0000
committerNorbert Preining <preining@logic.at>2009-04-28 20:54:39 +0000
commit05975015bfa5d698f6ea075d6bdc1527e34d33c8 (patch)
tree3c632ec80d4c2d0ea73ac2555be5e164883afdcb
parent112ac50ab71a7f8a8af21fa802322c7f8a84011d (diff)
rename funcs
git-svn-id: svn://tug.org/texlive/branches/branch2009-dev@12841 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/install-tl8
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/install-tl b/Master/install-tl
index 65724c7eb4f..6a4f22b7e3f 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -719,7 +719,7 @@ operations might be disturbed.\n\n";
foreach my $package (sort keys %install) {
if ($install{$package} && defined($PackageConfigInstall{$package})) {
info("running package configuration action for $package\n");
- &{$PackageConfigInstall{'xetex'}}($TEXDIR, $TEXDIRW, $TEXMFSYSVAR, $TEXMFLOCAL);
+ &{$PackageConfigInstall{$package}}($TEXDIR, $TEXDIRW, $TEXMFSYSVAR, $TEXMFLOCAL);
}
}
@@ -732,12 +732,12 @@ operations might be disturbed.\n\n";
# on unix this means setting up symlinks
# on w32 this means adding to path, settting registry values
# on both, we run the postaction directives of the tlp
- do_desktop_integration();
+ do_tlpdb_postactions();
}
-sub do_desktop_integration {
- info ("running desktop integration actions\n");
+sub do_tlpdb_postactions {
+ info ("running package specific postactions\n");
# Run the post installation code in the postaction tlpsrc entries
my $usedtlpdb = $vars{'from_dvd'} ? $tlpdb : $localtlpdb;
foreach my $package (sort keys %install) {