summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorSiep Kroonenberg <siepo@cybercomm.nl>2008-02-10 10:35:37 +0000
committerSiep Kroonenberg <siepo@cybercomm.nl>2008-02-10 10:35:37 +0000
commit1cfe0a700a0d45f4a55143d7f85d1d3469bb71c1 (patch)
tree832021288a9c775410066c1f1327ddf6e7fa6e72 /Master
parent31f64ed62ac6f5e60d5c2c81fc7f54d0c159a27c (diff)
Win32: replaced the other occurrence of `type <fn> | lzmadec' with
`lzmadec < <fn>' git-svn-id: svn://tug.org/texlive/trunk@6594 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 0707f3661e2..7f961298bc6 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -672,7 +672,8 @@ sub install_package {
tllog($::LOG_DEBUG, "Downloading $what to $target\\temp\\$fn\n");
tllog($::LOG_DEBUG, `$wget -q -O \"$target\\temp\\$fn\" \"$what\" 2>\&1`);
tllog($::LOG_DEBUG, "Un-lzmaing $target\\temp\\$fn to $target\\temp\\$tarfile\n");
- tllog($::LOG_DEBUG, `type \"$target\\temp\\$fn\" | $lzmadec > \"$target\\temp\\$tarfile\" 2>&1`);
+ #tllog($::LOG_DEBUG, `type \"$target\\temp\\$fn\" | $lzmadec > \"$target\\temp\\$tarfile\" 2>&1`);
+ tllog($::LOG_DEBUG, `$lzmadec < \"$target\\temp\\$fn\" > \"$target\\temp\\$tarfile\" 2>&1`);
tllog($::LOG_DEBUG, "Unpacking temp\\$tarfile\n");
tllog($::LOG_DEBUG, `pushd \"$target\" & $tar -xf \"temp\\$tarfile\" 2>&1`);
unlink("$target/temp/$tarfile", "$target/temp/$fn");