summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-01-07 12:10:54 +0000
committerNorbert Preining <preining@logic.at>2008-01-07 12:10:54 +0000
commitdbe04041bc0145fb7cce55cf9f6c4609ae5f4fab (patch)
treede95bdfd4daa240f72561e1444a0f100e4fdceb0
parentafa08073de0e5fa2eb3e178e0914fea417dba391 (diff)
win32 netinstall must run wget and lzma without path specification, it
cannot work git-svn-id: svn://tug.org/texlive/trunk@6106 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index cd3e5b08107..0704e632a1c 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -646,8 +646,8 @@ sub install_package {
my $tarfile = $fn;
$tarfile =~ s/\.lzma$//;
mkdirhier("$target/temp");
- mysystem("$bindir\\wget.exe -nv -O $target\\temp\\$fn $what");
- mysystem("$bindir\\lzma.exe d $target\\temp\\$fn $target\\temp\\$tarfile");
+ mysystem("wget -nv -O $target\\temp\\$fn $what");
+ mysystem("lzma d $target\\temp\\$fn $target\\temp\\$tarfile");
mysystem("pushd $target & $bindir\\bsdtar.exe -xvf temp\\$tarfile");
unlink("$target\\temp\\$tarfile");
unlink("$target\\temp\\$fn");