diff options
author | Karl Berry <karl@freefriends.org> | 2018-05-30 22:51:47 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-05-30 22:51:47 +0000 |
commit | e748969ef391ddfb6e7c0a7e23f2dcac8b636f14 (patch) | |
tree | aca7d77de8ed941a1a5917362e33f8b96106e776 /Master/tlpkg/bin | |
parent | e68e25cce32f11f30d274d48f6fff5f05d99b762 (diff) |
yet more xzdec instances
git-svn-id: svn://tug.org/texlive/trunk@47880 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/check-tlnet-consistency | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/check-tlnet-consistency b/Master/tlpkg/bin/check-tlnet-consistency index a48801d9002..56f8d086c06 100755 --- a/Master/tlpkg/bin/check-tlnet-consistency +++ b/Master/tlpkg/bin/check-tlnet-consistency @@ -100,7 +100,7 @@ sub main { die "Cannot load tlpobj from $temp/$pkg.tlpobj: $!" unless defined($tartlpobj); # get the src and doc containers unpacked and add the respective files if ($dosrc) { - system("cat $srccont | $::progs{xzdec} | $::progs{tar} -C \"$temp\" -xf - tlpkg/tlpobj"); + system("cat $srccont | $::progs{xz} | $::progs{tar} -C \"$temp\" -xf - tlpkg/tlpobj"); if (! -r "$temp/tlpkg/tlpobj/$pkg.source.tlpobj") { push @missingsrccontainer, $pkg; debug("ERROR: missing src container\n"); @@ -112,7 +112,7 @@ sub main { } } if ($dodoc) { - system("cat $doccont | $::progs{xzdec} | $::progs{tar} -C \"$temp\" -xf - tlpkg/tlpobj"); + system("cat $doccont | $::progs{xz} | $::progs{tar} -C \"$temp\" -xf - tlpkg/tlpobj"); if (! -r "$temp/tlpkg/tlpobj/$pkg.doc.tlpobj") { push @missingdoccontainer, $pkg; debug("ERROR: missing doc container\n"); |