diff options
author | Norbert Preining <preining@logic.at> | 2008-01-09 08:28:40 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-01-09 08:28:40 +0000 |
commit | 3ecabbc06dc8296ef38eb3007259b5d69cc5be20 (patch) | |
tree | 5cfd656a246922964b7c7a5e283784d2f4541a91 /Master | |
parent | 0c5d6ba68a0456a64078e6a1ab2c82e6966a98b0 (diff) |
APPPATH, HOMEDRIVE, HOMEPATH usage
git-svn-id: svn://tug.org/texlive/trunk@6160 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl.pl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Master/install-tl.pl b/Master/install-tl.pl index d207906b88c..26037e22d1b 100755 --- a/Master/install-tl.pl +++ b/Master/install-tl.pl @@ -667,7 +667,8 @@ sub do_texmf_cnf { if (win32()) { # on Windows we set TEXMFHOME to TEXMFLOCAL until we know how to # expand dynamically in kpse to getenv(PROFILEPATH) - push @newtmf, "TEXMFHOME = \$TEXMFLOCAL\n"; + #push @newtmf, "TEXMFHOME = \$TEXMFLOCAL\n"; + push @newtmf, "TEXMFHOME = \$HOMEDRIVE\$HOMEPATH/texmf\n"; } else { # on unix we ignore any setting done in the config dialog and leave # TEXMFHOME as is, i.e., ~/texmf @@ -677,7 +678,8 @@ sub do_texmf_cnf { if (win32()) { # on Windows we set TEXMFVAR to TEXMFSYSVAR until we know how to # expand dynamically in kpse to getenv(PROFILEPATH) - push @newtmf, "TEXMFVAR = \$TEXMFSYSVAR\n"; + #push @newtmf, "TEXMFVAR = \$TEXMFSYSVAR\n"; + push @newtmf, "TEXMFVAR = \$APPDATA/texlive2008/texmf-var\n"; } else { push @newtmf, $line; } @@ -685,7 +687,8 @@ sub do_texmf_cnf { if (win32()) { # on Windows we set TEXMFCONFIG to TEXMFSYSCONFIG until we know how to # expand dynamically in kpse to getenv(PROFILEPATH) - push @newtmf, "TEXMFCONFIG = \$TEXMFSYSCONFIG\n"; + #push @newtmf, "TEXMFCONFIG = \$TEXMFSYSCONFIG\n"; + push @newtmf, "TEXMFCONFIG = \$APPDATA/texlive2008/texmf-config\n"; } else { push @newtmf, $line; } |