diff options
author | Norbert Preining <preining@logic.at> | 2009-07-06 14:18:34 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-07-06 14:18:34 +0000 |
commit | f90e3126f681edcbb5aa9cf4924c9b0474c2860e (patch) | |
tree | 4d2d9c41762196a7f5938ad241c20eb874c4f726 /Master/tlpkg | |
parent | 32e3c03600f12ebe69986880715fdc0e5f7f8325 (diff) |
more fixes for TLWinGoo exporting
git-svn-id: svn://tug.org/texlive/trunk@14152 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index c3bb12c365c..a8296e3c3f7 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -1848,7 +1848,7 @@ sub w32_add_to_path { if (TeXLive::TLWinGoo::admin() && $multiuser) { $mode = 'system'; } - adjust_reg_path_for_texlive('add', $bindir, $mode); + TeXLive::TLWinGoo::adjust_reg_path_for_texlive('add', $bindir, $mode); $path = TeXLive::TLWinGoo::get_system_env() -> {'/Path'}; $path =~ s/[\s\x00]+$//; &log("New system path: $path\n"); @@ -1867,7 +1867,7 @@ sub w32_remove_from_path { if (TeXLive::TLWinGoo::admin() && $multiuser) { $mode = 'system'; } - adjust_reg_path_for_texlive('remove', $bindir, $mode); + TeXLive::TLWinGoo::adjust_reg_path_for_texlive('remove', $bindir, $mode); } |