diff options
author | Norbert Preining <preining@logic.at> | 2008-02-08 12:04:59 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-02-08 12:04:59 +0000 |
commit | 5573230bc68ca22debcf48f1632d99555c7b9212 (patch) | |
tree | aaf6e34b3f398ebeb6fe8b6291b78d2e5e750569 | |
parent | 4b1e87ab520ff41cd8f0fd0bdd9ac3256e9ec973 (diff) |
fix the installer.bat
git-svn-id: svn://tug.org/texlive/trunk@6556 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/install-tl.bat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/install-tl.bat b/Master/install-tl.bat index 44db44c5b51..d540c9d9cc5 100755 --- a/Master/install-tl.bat +++ b/Master/install-tl.bat @@ -10,14 +10,14 @@ cd %tlroot% rem we need wget in the path, so add tlpkg\bin to the path
set pathsave=%path%
-path %path%;%tlroot%tlpkg\bin
+path %path%;%tlroot%tlpkg\installer
rem use provided Perl
set PERL5SAVE=%PERL5LIB%
-set PERL5LIB=%tlroot%tlpkg\lib\Perl5_lib-TL_inst
-"%tlroot%tlpkg\bin\perl" "%tlroot%install-tl.pl" %*
+set PERL5LIB=%tlroot%tlpkg\installer\perllib
+"%tlroot%tlpkg\installer\perl" "%tlroot%install-tl.pl" %*
rem pause Done
rem cleanup in case of start from command-line
|