summaryrefslogtreecommitdiff
path: root/Master/install-tl
diff options
context:
space:
mode:
authorPiotr Strzelczyk <piotr@eps.gda.pl>2009-09-21 18:55:39 +0000
committerPiotr Strzelczyk <piotr@eps.gda.pl>2009-09-21 18:55:39 +0000
commit05eb95a1e668dc32937035fcc35c1e868c2e9f45 (patch)
treed1018f067e2cd7a22ad923bd4507774952c6501a /Master/install-tl
parent4b33efcf0eb29d722a2960bed609bcd20ed699af (diff)
use C:\texlive\YYYY as default installation location for win32
git-svn-id: svn://tug.org/texlive/trunk@15405 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-xMaster/install-tl9
1 files changed, 2 insertions, 7 deletions
diff --git a/Master/install-tl b/Master/install-tl
index 5aef80d493c..2b2a8833ae8 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -575,7 +575,6 @@ exit(0);
sub do_installation {
if (win32()) {
- debug("Switching to non-admin mode due to explicit user request!\n");
non_admin() if !$vars{'option_w32_multi_user'};
}
if ($vars{'n_collections_selected'} <= 0) {
@@ -993,12 +992,8 @@ sub set_texlive_default_dirs {
$tex_prefix=getenv('TEXLIVE_INSTALL_PREFIX');
if (win32) {
- my $prog = getenv('ProgramFiles');
- $tex_prefix ||= $prog . '/texlive';
- if (!TeXLive::TLUtils::texdir_check("$tex_prefix/$texlive_release")) {
- # the default location is not writable, switch to C:\texlive
- $tex_prefix = "c:/texlive";
- }
+ $tex_prefix ||= getenv('SystemDrive') . '/texlive';
+ # we use SystemDrive because ProgramFiles requires admin rights
# we don't use USERPROFILE here because that will be copied back and
# forth on roaming profiles
} else {