summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-01-09 08:08:53 +0000
committerNorbert Preining <preining@logic.at>2008-01-09 08:08:53 +0000
commit4b8108a6d47ef2a601a5df7b8b919654dd003c64 (patch)
treeb1e2a4ec29596f7ca66f255ad25d32befea6b68a /Master
parent022c02c3182bf68d5554622d7f3bf5d3c6457ec8 (diff)
win32: OSFONTDIR =$SystemRoot/fonts//
git-svn-id: svn://tug.org/texlive/trunk@6156 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/install-tl.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/Master/install-tl.pl b/Master/install-tl.pl
index c77c9b2f402..d207906b88c 100755
--- a/Master/install-tl.pl
+++ b/Master/install-tl.pl
@@ -689,6 +689,12 @@ sub do_texmf_cnf {
} else {
push @newtmf, $line;
}
+ } elsif ($line =~ m/^OSFONTDIR/) {
+ if (win32()) {
+ push @newtmf, "OSFONTDIR = \$SystemRoot/fonts//\n";
+ } else {
+ push @newtmf, $line;
+ }
} else {
push @newtmf, $line;
}