summaryrefslogtreecommitdiff
path: root/Master/install-tl.pl
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-01-09 08:01:31 +0000
committerNorbert Preining <preining@logic.at>2008-01-09 08:01:31 +0000
commit179f047bdc2006e5f0a0d3ab8b91488dce290098 (patch)
tree17335433f6a6bfa4b291386b37bb95841235e238 /Master/install-tl.pl
parentb57d7961623d4d7339ac26cbdd0ecaabc94daf10 (diff)
warn on TEXMFHOME only on Windows
git-svn-id: svn://tug.org/texlive/trunk@6154 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl.pl')
-rwxr-xr-xMaster/install-tl.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/install-tl.pl b/Master/install-tl.pl
index ffe59b3ae15..024483347d9 100755
--- a/Master/install-tl.pl
+++ b/Master/install-tl.pl
@@ -639,7 +639,6 @@ sub do_postinst_stuff {
# we have to adjust the texmf.cnf file to the paths set in the configuration!
sub do_texmf_cnf {
- warn "ADAPTION OF TEXMF.CNF NEEDS TO BE DONE!!!\n";
open(TMF,"<$vars{'TEXDIR'}/texmf/web2c/texmf.cnf") or die("Huu, hasn't $vars{'TEXDIR'}/texmf/web2c/texmf.cnf not been installed?\n");
my @texmfcnflines = <TMF>;
close(TMF);
@@ -665,7 +664,9 @@ sub do_texmf_cnf {
push @newtmf, "TEXMFSYSVAR = $vars{'TEXMFSYSVAR'}\n";
}
} elsif ($line =~ m/^TEXMFHOME/) {
- warn "WHAT TO DO WITH TEXMFHOME??? in TEXMF.CNF???\n";
+ if (win32()) {
+ warn "WARNING: TEXMFHOME is set to ~/texmf which will not work!\n";
+ }
push @newtmf, $line;
} else {
push @newtmf, $line;