diff options
author | Norbert Preining <preining@logic.at> | 2013-04-30 01:42:03 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2013-04-30 01:42:03 +0000 |
commit | 75c77e04548be113b531395608c569a8380684ec (patch) | |
tree | 3c11cf06cb02785a7ebae3cfcef616a0b1ab5df6 /Master/install-tl | |
parent | b727787d23deccc2a9664e1319cea569729c7f25 (diff) |
fit auto-detection of installation options
install-tl currently checks for the presence of the directory
texmf-dist/web2c
when determining whether there is an uncompressed installation
available. This breaks since now this directory is present even
in the network installer.
Change it to check for readability of texmf-dist/web2c/texmf.cnf
which is not available in the installer.
git-svn-id: svn://tug.org/texlive/trunk@30178 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index ae95af9bfa0..fe2804fe3b0 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -387,7 +387,7 @@ if (!$opt_custom_bin && (platform() eq "i386-cygwin")) { if (-d "$tmp/$Archive") { push @media_available, "local_compressed#$tmp"; } - if (-d "$tmp/texmf-dist/web2c") { + if (-r "$tmp/texmf-dist/web2c/texmf.cnf") { push @media_available, "local_uncompressed#$tmp"; } } |