diff options
author | Norbert Preining <preining@logic.at> | 2008-06-27 07:36:30 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-06-27 07:36:30 +0000 |
commit | 0c975cf8bf050e90a0e8fefe6d171a9611827e42 (patch) | |
tree | ee02be4efe21786e17d70497e00ebe6ea41d4257 | |
parent | cb1151fe4b996dd5af19b672e36f744fc8888b86 (diff) |
TLUtils: fix strangly never hit bug in conv_to_win_path ...
git-svn-id: svn://tug.org/texlive/trunk@9067 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index 6f4ee1ef320..4b9e18d2863 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -1385,7 +1385,7 @@ sub conv_to_win_path { if ($p !~ m!^.:!) { my $cwd = `cd`; chomp($cwd); - $p = "$cwd\\$bindir"; + $p = "$cwd\\$p"; } if ($p =~ m/ /) { $p = "\"$p\""; } return($p); |