summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLUtils.pm
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-06-27 07:36:30 +0000
committerNorbert Preining <preining@logic.at>2008-06-27 07:36:30 +0000
commit0c975cf8bf050e90a0e8fefe6d171a9611827e42 (patch)
treeee02be4efe21786e17d70497e00ebe6ea41d4257 /Master/tlpkg/TeXLive/TLUtils.pm
parentcb1151fe4b996dd5af19b672e36f744fc8888b86 (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
Diffstat (limited to 'Master/tlpkg/TeXLive/TLUtils.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm2
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);