diff options
author | Norbert Preining <preining@logic.at> | 2008-04-16 11:03:00 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-04-16 11:03:00 +0000 |
commit | 8d9dfda86bfa5f6e4740556222df86c4fdcfbf3a (patch) | |
tree | 1b4fcda9b199d524c24ab7a30a8a967ab17c844e /Master/tlpkg | |
parent | 77b983ce2717abe04d7eb3004e01328ee60ef079 (diff) |
spaces in names should also work on unix, we need quoted stuff
git-svn-id: svn://tug.org/texlive/trunk@7448 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index a1d455295fe..a58861ac13d 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -672,12 +672,12 @@ sub install_package { my $target_quote = $target; if (win32()) { $lzmafile =~ s!/!\\!g; - $lzmafile_quote = "\"$lzmafile\""; $tarfile =~ s!/!\\!g; - $tarfile_quote = "\"$tarfile\""; $target =~ s!/!\\!g; - $target_quote = "\"$target\""; } + $lzmafile_quote = "\"$lzmafile\""; + $tarfile_quote = "\"$tarfile\""; + $target_quote = "\"$target\""; if ($what =~ m,http://|ftp://,) { # we are installing from the NET # download the file and put it into temp |