diff options
author | Norbert Preining <preining@logic.at> | 2009-06-21 16:55:04 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-06-21 16:55:04 +0000 |
commit | d1e1f5e0b134492f468db04825c99d2ffb544e6b (patch) | |
tree | 8702f235d663c1dd99d2b42d8189544dab300e45 /Master | |
parent | d409bfe447cbbe7758e983cd60ce82894cbf09bb (diff) |
fix kill on unix by using ; instead of : as PATH separator
git-svn-id: svn://tug.org/texlive/trunk@13859 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 6432177bd8a..bd165c8b522 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -45,7 +45,7 @@ BEGIN { $bindir =~ s,/*[^/]*$,,; $Master = "$bindir/../.."; # make subprograms (including kpsewhich) have the right path: - $ENV{"PATH"} = "$bindir;$ENV{PATH}"; + $ENV{"PATH"} = "$bindir:$ENV{PATH}"; $kpsewhichname = "kpsewhich"; } if (-r "$bindir/$kpsewhichname") { |