diff options
-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); } |