diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2008-06-30 15:08:31 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2008-06-30 15:08:31 +0000 |
commit | 55b24ce0542a343127cab91d8de69039f7bdbc95 (patch) | |
tree | d70a3bfe04755e5f7d0112c847e6e07327c56a73 | |
parent | 9aeaffd2cbf243c265411933464928b1f13053a8 (diff) |
`Solved' finish popup crash by setting PERL5LIB in install-tl.bat
and not treating @INC specially for win32 in install-tl
git-svn-id: svn://tug.org/texlive/trunk@9112 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/install-tl | 6 | ||||
-rwxr-xr-x | Master/install-tl.bat | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/Master/install-tl b/Master/install-tl index 5cacb990e72..aa7c6c344aa 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -37,9 +37,9 @@ BEGIN { # $::installerdir/tlpkg/bin/perl.exe and should not rely on any other # Perl executable. - if ($^O=~/^MSWin(32|64)$/i) { - @INC="$::installerdir/tlpkg/installer/perllib"; - } + #if ($^O=~/^MSWin(32|64)$/i) { + # @INC="$::installerdir/tlpkg/installer/perllib"; + #} unshift (@INC, "$::installerdir/tlpkg"); } diff --git a/Master/install-tl.bat b/Master/install-tl.bat index f2f66a8c11b..6a7d5478f16 100755 --- a/Master/install-tl.bat +++ b/Master/install-tl.bat @@ -17,7 +17,6 @@ rem use provided Perl set PERL5SAVE=%PERL5LIB%
set PERL5LIB=%tlroot%tlpkg\installer\perllib
-rem "%tlroot%tlpkg\installer\perl" "%tlroot%install-tl.pl" %*
"%tlroot%tlpkg\installer\perl" "%~dpn0" %*
rem pause Done
|