summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive
diff options
context:
space:
mode:
authorSiep Kroonenberg <siepo@cybercomm.nl>2008-06-13 21:55:54 +0000
committerSiep Kroonenberg <siepo@cybercomm.nl>2008-06-13 21:55:54 +0000
commit81e132c7387b17fa31a5e35e5787562c9d0e7974 (patch)
tree30f35b5197b426fa026ad8dc6cfade4c1b3886ae /Master/tlpkg/TeXLive
parent23662146b710917edae5108a3d9a7fa6d5389c0f (diff)
texmf.cnf: TEXINPUTS for xetex. Removed useless cachedir stuff.
Minor fixes. git-svn-id: svn://tug.org/texlive/trunk@8720 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r--Master/tlpkg/TeXLive/TLPostActions.pm1
-rw-r--r--Master/tlpkg/TeXLive/TLWinGoo.pm6
2 files changed, 4 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLPostActions.pm b/Master/tlpkg/TeXLive/TLPostActions.pm
index b9bb04de647..092b8864ad4 100644
--- a/Master/tlpkg/TeXLive/TLPostActions.pm
+++ b/Master/tlpkg/TeXLive/TLPostActions.pm
@@ -73,7 +73,6 @@ sub do_install_bin_xetex {
foreach (@lines) {
$_ =~ s!c:/Program Files/texlive/2008!$texdir!;
$_ =~ s!c:/windows/fonts!$winfontdir! if win32();
- $_ =~ s!c:/etc/fccache!$texmfsysvar/fonts/cache!;
print FONTSCONF;
}
close(FONTSCONF);
diff --git a/Master/tlpkg/TeXLive/TLWinGoo.pm b/Master/tlpkg/TeXLive/TLWinGoo.pm
index b868e75b2f7..209e516cde2 100644
--- a/Master/tlpkg/TeXLive/TLWinGoo.pm
+++ b/Master/tlpkg/TeXLive/TLWinGoo.pm
@@ -925,12 +925,12 @@ Reinitialize unshort.bat, the shortcuts uninstaller.
=cut
sub init_unshortbat {
- my $texdir = shift;
+ my $texdirw = shift;
my $menupath = menu_path();
$menupath =~ s!/!\\!g;
# batchfile for uninstalling shortcuts
- open UNSHORT, ">$texdir/tlpkg/installer/unshort.bat";
+ open UNSHORT, ">$texdirw/tlpkg/installer/unshort.bat";
print UNSHORT 'rmdir /s /q "'.$menupath."\\TeX Live 2008\" 2>nul\n";
close UNSHORT;
}
@@ -1013,6 +1013,8 @@ sub create_uninstaller {
open UNINST, ">$tdwfw/tlpkg/installer/uninst.bat";
print UNINST <<UNEND;
\@echo off
+rem This should not be necessary, but sometimes it is:
+path $td\\bin\\win32;%path%
set PERL5LIB=
\"$td\\tlpkg\\tlperl\\bin\\perl.exe\" \"$td\\texmf\\scripts\\texlive\\uninstall-win32.pl\"
call \"$tdw\\tlpkg\\installer\\unshort.bat\"