diff options
author | Norbert Preining <preining@logic.at> | 2008-06-27 07:22:21 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-06-27 07:22:21 +0000 |
commit | cb1151fe4b996dd5af19b672e36f744fc8888b86 (patch) | |
tree | 218e57a267a6f4ba7387fa057d65e0b7ee1dbb39 /Master | |
parent | c381397289897bdc9fad9d8a269b01d1e24e3947 (diff) |
install-tl, fix another uninitialized $localpath
git-svn-id: svn://tug.org/texlive/trunk@9066 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Master/install-tl b/Master/install-tl index 20485a99d59..319394c3716 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -27,6 +27,8 @@ BEGIN { ($localpath=$me)=~s!(.*)/.*$!$1!; # we have to chdir to the Master ... chdir($localpath); + } else { + $localpath = '.'; } $::installerdir='.'; # The installer uses a minimal subset of Perl for Windows. In order |