diff options
Diffstat (limited to 'Master/install-tl.pl')
-rwxr-xr-x | Master/install-tl.pl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Master/install-tl.pl b/Master/install-tl.pl index 09c6bd89fe6..76ac273ad18 100755 --- a/Master/install-tl.pl +++ b/Master/install-tl.pl @@ -470,9 +470,10 @@ sub set_texlive_default_dirs { $tex_prefix ||= $prog . '/texlive' if TeXLive::TLWinGoo::dir_writable($prog); $tex_prefix||=getenv('USERPROFILE') . '/texlive'; } else { - $tex_prefix||='/usr/local/texlive' if (-w '/usr/local'); - $tex_prefix||='/usr/local/texlive' if ( (-d '/usr/local/texlive') && (-w '/usr/local/texlive') ); - $tex_prefix||=getenv('HOME') . '/texlive'; + $tex_prefix||='/usr/local/texlive'; + # $tex_prefix||='/usr/local/texlive' if (-w '/usr/local'); + # $tex_prefix||='/usr/local/texlive' if ( (-d '/usr/local/texlive') && (-w '/usr/local/texlive') ); + # $tex_prefix||=getenv('HOME') . '/texlive'; } $vars{'TEXDIR'}="$tex_prefix/$texlive_release"; |